diff options
author | Araq <rumpf_a@web.de> | 2014-10-05 03:06:19 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-10-05 03:06:19 +0200 |
commit | a9a5766c665c1d88f61669d562483fc8794d3960 (patch) | |
tree | 44b3db27d26449844c01d343bc35c901a86406e4 /doc | |
parent | fc47c0edc76d1d8460fa0d1b384b97b7f2c92934 (diff) | |
download | Nim-a9a5766c665c1d88f61669d562483fc8794d3960.tar.gz |
docgen should work again
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/threads.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/threads.txt b/doc/manual/threads.txt index d29cab6ca..a96abf060 100644 --- a/doc/manual/threads.txt +++ b/doc/manual/threads.txt @@ -101,7 +101,7 @@ The compiler can ensure the location in ``location = spawn f(...)`` is not read prematurely within a ``parallel`` section and so there is no need for the overhead of an indirection via ``FlowVar[T]`` to ensure correctness. -**Note**: Currently exceptions are not propagated between ``spawn``ed tasks! +**Note**: Currently exceptions are not propagated between ``spawn``'ed tasks! Spawn statement |