about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorStefan Schindler <dns2utf8@estada.ch>2016-05-12 17:38:20 +0200
committerStefan Schindler <dns2utf8@estada.ch>2016-05-12 17:38:20 +0200
commit91e43acf1fe68c02af0284e550c5418fad082d66 (patch)
tree670da9f3c729c68b2df263935355a92067dcd157 /src/libstd
parente88defe71806ad190588e168e513bc1098f7c9fb (diff)
downloadrust-91e43acf1fe68c02af0284e550c5418fad082d66.tar.gz
rust-91e43acf1fe68c02af0284e550c5418fad082d66.zip
Use the correct word in the explanation
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/time/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/time/mod.rs b/src/libstd/time/mod.rs
index bc50b0d3a70..80963a9b735 100644
--- a/src/libstd/time/mod.rs
+++ b/src/libstd/time/mod.rs
@@ -76,7 +76,7 @@ pub struct Instant(time::Instant);
 /// Distinct from the `Instant` type, this time measurement **is not
 /// monotonic**. This means that you can save a file to the file system, then
 /// save another file to the file system, **and the second file has a
-/// `SystemTime` measurement earlier than the second**. In other words, an
+/// `SystemTime` measurement earlier than the first**. In other words, an
 /// operation that happens after another operation in real time may have an
 /// earlier `SystemTime`!
 ///