We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d247ad commit 6716c83Copy full SHA for 6716c83
README.md
@@ -9,8 +9,7 @@ standard library, and documentation.
9
10
**Note: this README is for _users_ rather than _contributors_.
11
If you wish to _contribute_ to the compiler, you should read the
12
-[Getting Started][gettingstarted] of the rustc-dev-guide instead of this
13
-section.**
+[Getting Started][gettingstarted] section of the rustc-dev-guide instead.**
14
15
## Quick Start
16
src/bootstrap/util.rs
@@ -122,7 +122,7 @@ impl Drop for TimeIt {
122
fn drop(&mut self) {
123
let time = self.1.elapsed();
124
if !self.0 {
125
- println!("\tfinished in {}.{:03}", time.as_secs(), time.subsec_millis());
+ println!("\tfinished in {}.{:03} seconds", time.as_secs(), time.subsec_millis());
126
}
127
128
0 commit comments