Skip to content
Merged
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 statig/src/blocking/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ where

/// Transition from the current state to the given target state.
pub(crate) fn transition(&mut self, mut target: M::State, context: &mut M::Context<'_>) {
M::before_transition(&mut self.shared_storage, &target, &self.state, context);
M::before_transition(&mut self.shared_storage, &self.state, &target, context);

// Get the transition path we need to perform from one state to the next.
let (exit_levels, enter_levels) = self.state.transition_path(&mut target);
Expand Down
Loading