diff --git a/crates/bevy_core/src/time/time.rs b/crates/bevy_core/src/time/time.rs index c47855e974..dd75fc818d 100644 --- a/crates/bevy_core/src/time/time.rs +++ b/crates/bevy_core/src/time/time.rs @@ -75,13 +75,13 @@ impl Time { self.startup } - /// The ['Instant'] when [`Time::update`] was last called, if it exists + /// The [`Instant`] when [`Time::update`] was last called, if it exists #[inline] pub fn last_update(&self) -> Option { self.last_update } - /// The ['Duration'] from startup to the last update + /// The [`Duration`] from startup to the last update #[inline] pub fn time_since_startup(&self) -> Duration { self.time_since_startup