summary refs log tree commit diff stats
path: root/doc/manual
diff options
context:
space:
mode:
authorMarkus Engelbrecht <github@enbre.com>2015-05-16 14:34:11 +0200
committerMarkus Engelbrecht <github@enbre.com>2015-05-16 14:35:10 +0200
commit5799f4f1031dc4f019592a5d5625ebe5e89ed114 (patch)
treea29b47cea44d518b10f25edcef4e40dbdfafb34e /doc/manual
parent1c0bbcff5a3d5176409245fdd685587d14ce64e3 (diff)
downloadNim-5799f4f1031dc4f019592a5d5625ebe5e89ed114.tar.gz
RawFlowVar was renamed to FlowVarBase
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/threads.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/threads.txt b/doc/manual/threads.txt
index 11380f757..f2b79a34f 100644
--- a/doc/manual/threads.txt
+++ b/doc/manual/threads.txt
@@ -146,7 +146,7 @@ wait on multiple flow variables at the same time:
 
   # wait until 2 out of 3 servers received the update:
   proc main =
-    var responses = newSeq[RawFlowVar](3)
+    var responses = newSeq[FlowVarBase](3)
     for i in 0..2:
       responses[i] = spawn tellServer(Update, "key", "value")
     var index = awaitAny(responses)