Fix minor doc typo (#13776)

Don't think any description is needed, just happened to stumble on this
while reading up on how to use `Stopwatch` :)
This commit is contained in:
Jan Hohenheim 2024-06-10 09:15:38 +02:00 committed by GitHub
parent 69d7da9b37
commit 1b9edd0e5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
use bevy_reflect::{prelude::*, Reflect}; use bevy_reflect::{prelude::*, Reflect};
use bevy_utils::Duration; use bevy_utils::Duration;
/// A Stopwatch is a struct that track elapsed time when started. /// A Stopwatch is a struct that tracks elapsed time when started.
/// ///
/// Note that in order to advance the stopwatch [`tick`](Stopwatch::tick) **MUST** be called. /// Note that in order to advance the stopwatch [`tick`](Stopwatch::tick) **MUST** be called.
/// # Examples /// # Examples