Skip to content

Commit

Permalink
Fix typo in ReplayScheduler (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsko authored Feb 7, 2024
1 parent 34b1db4 commit c327892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scheduler/replay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl ReplayScheduler {
}

/// Given a file containing a schedule, construct a new [`ReplayScheduler`] that will execute
/// threads in the order epseicied in the schedule.
/// threads in the order specified in the schedule.
pub fn new_from_file<P: AsRef<Path>>(path: P) -> Result<Self, std::io::Error> {
let mut file = OpenOptions::new().read(true).open(path)?;
let mut encoded_schedule = String::new();
Expand Down

0 comments on commit c327892

Please sign in to comment.