Pārlūkot izejas kodu

core/sync/chan.try_select_raw: fix doc comment typo

Signed-off-by: Jack Mordaunt <[email protected]>
Jack Mordaunt 3 mēneši atpakaļ
vecāks
revīzija
96b91849a9
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      core/sync/chan/chan.odin

+ 1 - 1
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.
 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
 and which are available for sending. It then randomly selects one operation
 (either a send or receive) to perform.
 (either a send or receive) to perform.