diff options
author | Markus Engelbrecht <github@enbre.com> | 2015-05-16 14:34:11 +0200 |
---|---|---|
committer | Markus Engelbrecht <github@enbre.com> | 2015-05-16 14:35:10 +0200 |
commit | 5799f4f1031dc4f019592a5d5625ebe5e89ed114 (patch) | |
tree | a29b47cea44d518b10f25edcef4e40dbdfafb34e /doc | |
parent | 1c0bbcff5a3d5176409245fdd685587d14ce64e3 (diff) | |
download | Nim-5799f4f1031dc4f019592a5d5625ebe5e89ed114.tar.gz |
RawFlowVar was renamed to FlowVarBase
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/threads.txt | 2 | ||||
-rw-r--r-- | doc/spawn.txt | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/doc/spawn.txt b/doc/spawn.txt index fb2f851c7..36bd02e96 100644 --- a/doc/spawn.txt +++ b/doc/spawn.txt @@ -33,7 +33,7 @@ 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) |