summaryrefslogtreecommitdiff
path: root/src/ir
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir')
-rw-r--r--src/ir/comp.rs2
-rw-r--r--src/ir/function.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ir/comp.rs b/src/ir/comp.rs
index 0960ee11..407d58ac 100644
--- a/src/ir/comp.rs
+++ b/src/ir/comp.rs
@@ -1136,7 +1136,7 @@ impl CompInfo {
// Let's just assume that if the cursor we've found is a
// definition, it's a valid inner type.
//
- // [1]: https://github.com/servo/rust-bindgen/issues/482
+ // [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/482
let is_inner_struct = cur.semantic_parent() == cursor ||
cur.is_definition();
if !is_inner_struct {
diff --git a/src/ir/function.rs b/src/ir/function.rs
index 663bb8e3..fbb6121e 100644
--- a/src/ir/function.rs
+++ b/src/ir/function.rs
@@ -193,7 +193,7 @@ pub fn cursor_mangling(ctx: &BindgenContext,
// We early return here because libclang may crash in some case
// if we pass in a variable inside a partial specialized template.
- // See servo/rust-bindgen#67, and servo/rust-bindgen#462.
+ // See rust-lang-nursery/rust-bindgen#67, and rust-lang-nursery/rust-bindgen#462.
if cursor.is_in_non_fully_specialized_template() {
return None;
}
@@ -474,7 +474,7 @@ impl Trace for FunctionSig {
// Function pointers follow special rules, see:
//
-// https://github.com/servo/rust-bindgen/issues/547,
+// https://github.com/rust-lang-nursery/rust-bindgen/issues/547,
// https://github.com/rust-lang/rust/issues/38848,
// and https://github.com/rust-lang/rust/issues/40158
//