diff options
author | Araq <rumpf_a@web.de> | 2014-08-28 09:50:51 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-28 09:50:51 +0200 |
commit | d05df2173b95155a53e9c731f1c78b754eb2410c (patch) | |
tree | 65f20fc74273b77bf158911af281253a89ec5a59 /lib/pure/concurrency | |
parent | 2781fea9e2a67e86f37277f5e2808fc444a1173a (diff) | |
download | Nim-d05df2173b95155a53e9c731f1c78b754eb2410c.tar.gz |
Nimrod renamed to Nim
Diffstat (limited to 'lib/pure/concurrency')
-rw-r--r-- | lib/pure/concurrency/cpuinfo.nim | 2 | ||||
-rw-r--r-- | lib/pure/concurrency/threadpool.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/concurrency/cpuinfo.nim b/lib/pure/concurrency/cpuinfo.nim index dfa819f64..e55786c3e 100644 --- a/lib/pure/concurrency/cpuinfo.nim +++ b/lib/pure/concurrency/cpuinfo.nim @@ -1,6 +1,6 @@ # # -# Nimrod's Runtime Library +# Nim's Runtime Library # (c) Copyright 2014 Andreas Rumpf # # See the file "copying.txt", included in this diff --git a/lib/pure/concurrency/threadpool.nim b/lib/pure/concurrency/threadpool.nim index dfde610f2..fe08e94fc 100644 --- a/lib/pure/concurrency/threadpool.nim +++ b/lib/pure/concurrency/threadpool.nim @@ -189,7 +189,7 @@ proc nimFlowVarSignal(fv: FlowVarBase) {.compilerProc.} = proc awaitAndThen*[T](fv: FlowVar[T]; action: proc (x: T) {.closure.}) = ## blocks until the ``fv`` is available and then passes its value - ## to ``action``. Note that due to Nimrod's parameter passing semantics this + ## to ``action``. Note that due to Nim's parameter passing semantics this ## means that ``T`` doesn't need to be copied and so ``awaitAndThen`` can ## sometimes be more efficient than ``^``. await(fv) |