summary refs log tree commit diff
path: root/src/bootstrap/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-09-13 22:41:34 -0700
committerGitHub <noreply@github.com>2016-09-13 22:41:34 -0700
commit739d57180fa207410b8858f8cede7b8a9ea6f01e (patch)
tree48bd42052665b2f0b5c7b82ffadd10d0e1844a53 /src/bootstrap/lib.rs
parentb1363a73ede57ae595f3a1be2bb75d308ba4f7f6 (diff)
parent694d601dbc2df575c32a490a529656a864dc0a2e (diff)
downloadrust-739d57180fa207410b8858f8cede7b8a9ea6f01e.tar.gz
rust-739d57180fa207410b8858f8cede7b8a9ea6f01e.zip
Auto merge of #36041 - ahmedcharles:try, r=nrc
Replace try! with ?.
Diffstat (limited to 'src/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 4beba5c8852..ebca0c8ecea 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -45,7 +45,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,