Skip to content

Commit

Permalink
fix Time::pause docs (missing "not") (#7807)
Browse files Browse the repository at this point in the history
# Objective

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

## Solution

- add missing word "not"
  • Loading branch information
jakobhellermann committed Feb 24, 2023
1 parent e27e04a commit d1a1f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_time/src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d1a1f90

Please sign in to comment.