From c1bc457e1133b8e2216c99c339d0a38e8539cc66 Mon Sep 17 00:00:00 2001 From: Mikhail Katychev Date: Wed, 4 Sep 2024 19:06:13 -0500 Subject: [PATCH] Update src/manager.rs Co-authored-by: Jeremiah Goyette --- src/manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manager.rs b/src/manager.rs index aa658ec..92fd49c 100644 --- a/src/manager.rs +++ b/src/manager.rs @@ -775,7 +775,7 @@ mod tests { if let WhoHolds(Some(Game::Pong)) = packet.who_holds { info!(msg = packet.msg, "HOLDING"); - // hold for half theduration of the message + // hold for half the duration of the message let hold_for = Duration::from_millis(packet.msg); self.return_in(&ctx, Hold(packet), hold_for); return;