about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorNikita Pekin <contact@nikitapek.in>2014-06-03 14:25:16 -0400
committerNikita Pekin <contact@nikitapek.in>2014-06-03 14:30:59 -0400
commit296102ec869834a7faed34106ad2cf24dd83766a (patch)
treecc80cc9e27b59101ecafdd944c4f5e98b8698e01 /src/libsyntax
parentdf821dc1aa60ad3e8196fb88053f308c274f6244 (diff)
downloadrust-296102ec869834a7faed34106ad2cf24dd83766a.tar.gz
rust-296102ec869834a7faed34106ad2cf24dd83766a.zip
Fix typo "gihub" in libsyntax/crateid.
Update licensing header for 2014.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/crateid.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/crateid.rs b/src/libsyntax/crateid.rs
index 3f74598d2e5..a50cca1e164 100644
--- a/src/libsyntax/crateid.rs
+++ b/src/libsyntax/crateid.rs
@@ -1,4 +1,4 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -13,7 +13,7 @@ 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
-/// `gitub.com/mozilla/rust` and a crate name of `std` with a version of
+/// `github.com/mozilla/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`.