mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
fix Time::pause
docs (missing "not") (#7807)
# Objective Time pausing does *not* affect `raw_*`. ## Solution - add missing word "not"
This commit is contained in:
parent
e27e04a4a7
commit
d1a1f90902
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue