about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2017-08-09 09:28:18 -0700
committerGitHub <noreply@github.com>2017-08-09 09:28:18 -0700
commit97d046a7278c7019a5f9ff1a0c2e30324ff0346a (patch)
tree2b63b4bb46ac18197b927d4f9b512990e338e9d2
parentc9814fa4850eb995019236d71f794cd8dc7c4ab0 (diff)
downloadrust-97d046a7278c7019a5f9ff1a0c2e30324ff0346a.tar.gz
rust-97d046a7278c7019a5f9ff1a0c2e30324ff0346a.zip
Fix grammar
-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 839d2188f3d..e8eb4abaa40 100644
--- a/src/libstd/time/mod.rs
+++ b/src/libstd/time/mod.rs
@@ -36,7 +36,7 @@ mod duration;
 /// A measurement of a monotonically nondecreasing clock.
 /// Opaque and useful only with `Duration`.
 ///
-/// Instants are always guaranteed to no less than any previously measured
+/// Instants are always guaranteed to be no less than any previously measured
 /// instant when created, and are often useful for tasks such as measuring
 /// benchmarks or timing how long an operation takes.
 ///