From b63010fa430a247da8ecf2508482d240bed3185e Mon Sep 17 00:00:00 2001 From: user0-07161 Date: Fri, 26 Dec 2025 21:27:27 +0100 Subject: [PATCH] chore: fix grammar in a comment --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 92d7db5..e299967 100644 --- a/src/main.rs +++ b/src/main.rs @@ -192,7 +192,7 @@ async fn message_listener( hostname: &str, ) -> Result<(), ListenerError> { if !user_wrapped.is_populated() { - sleep(Duration::from_millis(250)).await; // avoid immediately returns b'cuz they result in high + sleep(Duration::from_millis(250)).await; // avoid immediate returns b'cuz they result in high // cpu usage return Err(ListenerError::UserIsUnidentified); }