From cb1231bf73b7688dd6ffc1bca8f691bdbee78cf2 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sat, 24 Sep 2016 12:47:00 +0300 Subject: [PATCH] Typo in doc --- lib/system/channels.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/channels.nim b/lib/system/channels.nim index 0c97bc8db0..4b8b895a5c 100644 --- a/lib/system/channels.nim +++ b/lib/system/channels.nim @@ -242,7 +242,7 @@ proc recv*[TMsg](c: var Channel[TMsg]): TMsg = proc tryRecv*[TMsg](c: var Channel[TMsg]): tuple[dataAvailable: bool, msg: TMsg] = - ## try to receives a message from the channel `c`, but this can fail + ## Tries to receive a message from the channel `c`, but this can fail ## for all sort of reasons, including contention. If it fails, ## it returns ``(false, default(msg))`` otherwise it ## returns ``(true, msg)``.