Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/bevy_time/src/fixed_timestep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl FixedTime {

/// Expends one `period` of accumulated time.
///
/// [`Err(FixedUpdateError`)] will be returned if there is
/// [`Err(FixedUpdateError)`] will be returned if there is
/// not enough accumulated time to span an entire period.
pub fn expend(&mut self) -> Result<(), FixedUpdateError> {
if let Some(new_value) = self.accumulated.checked_sub(self.period) {
Expand Down