Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniaczQ committed Jun 9, 2024
1 parent f51b861 commit b5cfb7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/state/custom_transitions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ mod custom_transitions {
// - [`ExitSchedules`] - Ran from leaf-states to root-states,
// - [`TransitionSchedules`] - Ran in arbitrary order,
// - [`EnterSchedules`] - Ran from root-states to leaf-states.
.in_set(EnterSchedules<S>::default()),
.in_set(EnterSchedules::<S>::default()),
)
.add_systems(
StateTransition,
last_transition::<S>
.pipe(run_reexit::<S>)
.in_set(ExitSchedules<S>::default()),
.in_set(ExitSchedules::<S>::default()),
);
}
}
Expand Down

0 comments on commit b5cfb7c

Please sign in to comment.