about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-06-16 16:07:34 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-16 18:16:36 -0700
commitf4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e (patch)
tree095cf0cff432afd4cb528875690191fabb10df1a /src/libsyntax
parente1971dd35a679ff8fc438f7ccb8d6754de472d6e (diff)
downloadrust-f4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e.tar.gz
rust-f4ae8a83f9e56a7f16a5f0a25d22c74063e2fb5e.zip
Update repo location
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs2
-rw-r--r--src/libsyntax/crateid.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index ae0fb34d735..86dd736ceea 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -977,7 +977,7 @@ pub enum ViewItem_ {
     // ident: name used to refer to this crate in the code
     // optional (InternedString,StrStyle): if present, this is a location
     // (containing arbitrary characters) from which to fetch the crate sources
-    // For example, extern crate whatever = "github.com/mozilla/rust"
+    // For example, extern crate whatever = "github.com/rust-lang/rust"
     ViewItemExternCrate(Ident, Option<(InternedString,StrStyle)>, NodeId),
     ViewItemUse(Gc<ViewPath>),
 }
diff --git a/src/libsyntax/crateid.rs b/src/libsyntax/crateid.rs
index 8ac54a191f2..a3112cbb8be 100644
--- a/src/libsyntax/crateid.rs
+++ b/src/libsyntax/crateid.rs
@@ -12,8 +12,8 @@ use std::fmt;
 
 /// CrateIds identify crates and include the crate name and optionally a path
 /// and version. In the full form, they look like relative URLs. Example:
-/// `github.com/mozilla/rust#std:1.0` would be a package ID with a path of
-/// `github.com/mozilla/rust` and a crate name of `std` with a version of
+/// `github.com/rust-lang/rust#std:1.0` would be a package ID with a path of
+/// `github.com/rust-lang/rust` and a crate name of `std` with a version of
 /// `1.0`. If no crate name is given after the hash, the name is inferred to
 /// be the last component of the path. If no version is given, it is inferred
 /// to be `0.0`.