diff --git a/asynchronix/src/simulation.rs b/asynchronix/src/simulation.rs index 3357698..1fba49f 100644 --- a/asynchronix/src/simulation.rs +++ b/asynchronix/src/simulation.rs @@ -241,7 +241,7 @@ impl Simulation { /// Iteratively advances the simulation time by the specified duration, as /// if by calling [`Simulation::step()`] repeatedly. /// - /// This method block until all events scheduled up to the specified target + /// This method blocks until all events scheduled up to the specified target /// time have completed. The simulation time upon completion is equal to the /// initial simulation time incremented by the specified duration, whether /// or not an event was scheduled for that time. @@ -254,7 +254,7 @@ impl Simulation { /// Iteratively advances the simulation time until the specified deadline, /// as if by calling [`Simulation::step()`] repeatedly. /// - /// This method block until all events scheduled up to the specified target + /// This method blocks until all events scheduled up to the specified target /// time have completed. The simulation time upon completion is equal to the /// specified target time, whether or not an event was scheduled for that /// time.