summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorCléber Zavadniak <cleberman@gmail.com>2020-08-11 23:46:16 -0300
committerGitHub <noreply@github.com>2020-08-12 04:46:16 +0200
commitce2da87ecae09b952cb9b247662703577723bb02 (patch)
tree9dfde593ab707ae28207a1af47c6df23f1e7d688 /lib/pure
parent2cea52ee7e7d0f118976df5311a84540cbea85cd (diff)
downloadNim-ce2da87ecae09b952cb9b247662703577723bb02.tar.gz
Fix typo on CoroutineRef* doc (#15179)
Just a small fix for a typo ("for for").
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/coro.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/coro.nim b/lib/pure/coro.nim
index ead3849c6..6e49b6323 100644
--- a/lib/pure/coro.nim
+++ b/lib/pure/coro.nim
@@ -158,7 +158,7 @@ type
     ## CoroutineRef holds a pointer to actual coroutine object. Public API always returns
     ## CoroutineRef instead of CoroutinePtr in order to allow holding a reference to coroutine
     ## object while it can be safely deallocated by coroutine scheduler loop. In this case
-    ## Coroutine.reference.coro is set to nil. Public API checks for for it being nil and
+    ## Coroutine.reference.coro is set to nil. Public API checks for it being nil and
     ## gracefully fails if it is nil.
     coro: CoroutinePtr