about summary refs log tree commit diff
path: root/library/std/src/time.rs
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2022-02-09 12:17:38 -0800
committerThe 8472 <git@infinite-source.de>2022-02-13 01:06:36 +0100
commit37a1fc542fbf8c11356d4395f28d4ab7f936945d (patch)
tree90c840a1f98f3df28efa9873bcc6f63ea71a2c23 /library/std/src/time.rs
parent376d955a32e781c988af3a1cd2f7056f5da28cb5 (diff)
downloadrust-37a1fc542fbf8c11356d4395f28d4ab7f936945d.tar.gz
rust-37a1fc542fbf8c11356d4395f28d4ab7f936945d.zip
Capitalize "Rust"
Co-authored-by: Mark Rousskov <mark.simulacrum@gmail.com>
Diffstat (limited to 'library/std/src/time.rs')
-rw-r--r--library/std/src/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/time.rs b/library/std/src/time.rs
index 4a65d612a62..df8a726e64e 100644
--- a/library/std/src/time.rs
+++ b/library/std/src/time.rs
@@ -133,7 +133,7 @@ pub use core::time::FromFloatSecsError;
 /// if available, which is the case for all [tier 1] platforms.
 /// In practice such guarantees are – under rare circumstances – broken by hardware, virtualization
 /// or operating system bugs. To work around these bugs and platforms not offering monotonic clocks
-/// [`duration_since`], [`elapsed`] and [`sub`] saturate to zero. In older rust versions this
+/// [`duration_since`], [`elapsed`] and [`sub`] saturate to zero. In older Rust versions this
 /// lead to a panic instead. [`checked_duration_since`] can be used to detect and handle situations
 /// where monotonicity is violated, or `Instant`s are subtracted in the wrong order.
 ///