fix Time::pause docs (missing "not") (#7807)

# Objective

Time pausing does *not* affect `raw_*`.

## Solution

- add missing word "not"
This commit is contained in:
Jakob Hellermann 2023-02-24 12:55:43 +00:00
parent e27e04a4a7
commit d1a1f90902

View file

@ -405,7 +405,7 @@ impl Time {
/// Stops the clock, preventing it from advancing until resumed.
///
/// **Note:** This does affect the `raw_*` measurements.
/// **Note:** This does not affect the `raw_*` measurements.
#[inline]
pub fn pause(&mut self) {
self.paused = true;