From 96b91849a9f91d1b00b91bb3a627c955e6cf42ef Mon Sep 17 00:00:00 2001 From: Jack Mordaunt Date: Wed, 11 Jun 2025 12:31:15 -0300 Subject: [PATCH] core/sync/chan.try_select_raw: fix doc comment typo Signed-off-by: Jack Mordaunt --- core/sync/chan/chan.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sync/chan/chan.odin b/core/sync/chan/chan.odin index 17c251158..694d89aeb 100644 --- a/core/sync/chan/chan.odin +++ b/core/sync/chan/chan.odin @@ -1126,7 +1126,7 @@ Select_Status :: enum { /* Attempts to either send or receive messages on the specified channels without blocking. -`select_raw` first identifies which channels have messages ready to be received +`try_select_raw` first identifies which channels have messages ready to be received and which are available for sending. It then randomly selects one operation (either a send or receive) to perform.