summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNick Fitzgerald <fitzgen@gmail.com>2017-07-25 16:29:03 -0700
committerNick Fitzgerald <fitzgen@gmail.com>2017-07-25 16:32:13 -0700
commit1baf7dc1c86d6b4a3ebe8ffab5efbc8fa3d4be32 (patch)
tree83a9d0e064dbf25aac99377930df7223eef57745 /src/lib.rs
parent23dbe487b8d2a142fb03d9aefc3b4dd29aa78009 (diff)
s/servo/rust-lang-nursery/ \o/
Fixes #852
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 700ca7e9..4eeb95f4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -484,7 +484,7 @@ impl Builder {
/// implement some processing on comments to work around issues as described
/// in:
///
- /// https://github.com/servo/rust-bindgen/issues/426
+ /// https://github.com/rust-lang-nursery/rust-bindgen/issues/426
pub fn generate_comments(mut self, doit: bool) -> Self {
self.options.generate_comments = doit;
self
@@ -513,7 +513,7 @@ impl Builder {
/// However, some old libclang versions seem to return incorrect results in
/// some cases for non-mangled functions, see [1], so we allow disabling it.
///
- /// [1]: https://github.com/servo/rust-bindgen/issues/528
+ /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528
pub fn trust_clang_mangling(mut self, doit: bool) -> Self {
self.options.enable_mangling = doit;
self
@@ -1038,7 +1038,7 @@ pub struct BindgenOptions {
/// However, some old libclang versions seem to return incorrect results in
/// some cases for non-mangled functions, see [1], so we allow disabling it.
///
- /// [1]: https://github.com/servo/rust-bindgen/issues/528
+ /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528
pub enable_mangling: bool,
/// Whether to prepend the enum name to bitfield or constant variants.