Skip to content

Commit

Permalink
dev: fix typo in identifier name
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Bajpai authored and Harsh Bajpai committed Sep 26, 2023
1 parent 3c67a7a commit 536b155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/sequencer/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ impl State {

/// This will read a dump from a file and initialize the state from it
pub fn load_state_from_file(path: &PathBuf) -> Result<Self, SerializationError> {
let serilizable_state = SerializableState::load_state(path)?;
let serializable_state = SerializableState::load_state(path)?;

Ok(Self::from(&serilizable_state))
Ok(Self::from(&serializable_state))
}
}

Expand Down

0 comments on commit 536b155

Please sign in to comment.