From 93b881bf6af0ef27159905f137f355fb36d63721 Mon Sep 17 00:00:00 2001 From: Jeff Baskin Date: Thu, 10 Apr 2025 13:57:13 -0400 Subject: [PATCH] Corrected typos. --- src/clock.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" ); }