Skip to content

Commit

Permalink
Forgot a semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsDoot committed Mar 10, 2023
1 parent 11cb4e3 commit 1395af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/world/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ impl World {
/// Panics if the requested schedule does not exist, or the [`Schedules`] resource was not added.
pub fn run_schedule_ref(&mut self, label: &dyn ScheduleLabel) {
self.try_run_schedule_ref(label)
.unwrap_or_else(|e| panic!("{}", e))
.unwrap_or_else(|e| panic!("{}", e));
}
}

Expand Down

0 comments on commit 1395af1

Please sign in to comment.