From acf5e40d02a25a6e99ef23ef61aca8cd261de9d3 Mon Sep 17 00:00:00 2001 From: Jomar Milan Date: Tue, 9 Jun 2026 17:15:24 -0700 Subject: Add player hand display in browser --- src/play.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/play.rs') diff --git a/src/play.rs b/src/play.rs index 574e8b8..e08a895 100644 --- a/src/play.rs +++ b/src/play.rs @@ -34,7 +34,7 @@ pub async fn handle_play(mut socket: WebSocket, app_state: Arc) { // Blocked so that the guard is dropped after cloning the color names, // preventing a potential deadlock when using .await after sending something // through the socket, which would be possible if using tokio::sync::Mutex. - // Of course, the sessions HashMap is wrapped instd::sync types instead, which + // Of course, the sessions HashMap is wrapped in std::sync types instead, which // does not enable locking the mutex through .await anyway. let colors: Vec = { let sessions = app_state.sessions.read().unwrap(); -- cgit v1.2.3