From ce2da87ecae09b952cb9b247662703577723bb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ber=20Zavadniak?= Date: Tue, 11 Aug 2020 23:46:16 -0300 Subject: [PATCH] Fix typo on CoroutineRef* doc (#15179) Just a small fix for a typo ("for for"). --- lib/pure/coro.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/coro.nim b/lib/pure/coro.nim index ead3849c6b..6e49b63231 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