diff --git a/src/clock.rs b/src/clock.rs index 0e622f3..0a1a493 100644 --- a/src/clock.rs +++ b/src/clock.rs @@ -74,12 +74,12 @@ mod clocks { let msg2 = rx.recv().unwrap(); assert!( start.elapsed() >= SLEEP_FOR, - "did not pause long enough betwee sends" + "did not pause long enough between sends" ); assert!( msg2.get_data("time").unwrap().to_datetime().unwrap() >= msg1.get_data("time").unwrap().to_datetime().unwrap() + SLEEP_FOR, - "shoould present the latest time" + "should present the latest time" ); }