From 2ae616af302d6022fbc3234122bc3bb71915c073 Mon Sep 17 00:00:00 2001 From: Yaroslav Dynnikov Date: Mon, 10 Jan 2022 14:22:45 +0300 Subject: [PATCH] Fix doc formatting for time.rs The doc states that instants are not steady, but the word "not" wasn't highlighted in bold. --- library/std/src/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/time.rs b/library/std/src/time.rs index 86cc93c445376..b6867e68df745 100644 --- a/library/std/src/time.rs +++ b/library/std/src/time.rs @@ -54,7 +54,7 @@ pub use core::time::FromSecsError; /// instant when created, and are often useful for tasks such as measuring /// benchmarks or timing how long an operation takes. /// -/// Note, however, that instants are not guaranteed to be **steady**. In other +/// Note, however, that instants are **not** guaranteed to be **steady**. In other /// words, each tick of the underlying clock might not be the same length (e.g. /// some seconds may be longer than others). An instant may jump forwards or /// experience time dilation (slow down or speed up), but it will never go