about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAhmed Charles <acharles@outlook.com>2016-08-27 02:10:09 -0700
committerAhmed Charles <acharles@outlook.com>2016-09-11 16:00:50 -0700
commit6d88ab57b3e308456c79694e281dbd4f08603f13 (patch)
treef86802d6440855bf8ceeaf8af80cdb57a1de1440
parentf0a414e74e4bd4d70fcf93198791432705df9b92 (diff)
downloadrust-6d88ab57b3e308456c79694e281dbd4f08603f13.tar.gz
rust-6d88ab57b3e308456c79694e281dbd4f08603f13.zip
Fix typo in bootstrap/lib.rs.
-rw-r--r--src/bootstrap/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index 94c14f7ea25..a1424bf3aaa 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -46,7 +46,7 @@ use util::{exe, mtime, libdir, add_lib_path};
 /// * The error itself
 ///
 /// This is currently used judiciously throughout the build system rather than
-/// using a `Result` with `try!`, but this may change on day...
+/// using a `Result` with `try!`, but this may change one day...
 macro_rules! t {
     ($e:expr) => (match $e {
         Ok(e) => e,