diff options
author | Tomohiro <gpuppur@gmail.com> | 2018-10-13 15:55:34 +0900 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-13 08:55:34 +0200 |
commit | eb4272ba1cbed567a35d8c2eb8eff4081794b190 (patch) | |
tree | 8820a48cb8545d71788fdaee4986c2030308be74 /doc | |
parent | 9cdd9be5a529675112b4c0e85a66061eaf0f53b7 (diff) | |
download | Nim-eb4272ba1cbed567a35d8c2eb8eff4081794b190.tar.gz |
manual: Fix links to Parallel & Spawn (#9342)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.rst | 2 | ||||
-rw-r--r-- | doc/manual.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index 0d7dedc39..9451c5026 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -59,7 +59,7 @@ Core This module defines compile-time reflection procs for working with types. * `threadpool <threadpool.html>`_ - Implements Nim's `spawn <manual.html#spawn>`_. + Implements Nim's `spawn <manual.html#parallel-amp-spawn>`_. * `cpuinfo <cpuinfo.html>`_ This module implements procs to determine the number of CPUs / cores. diff --git a/doc/manual.rst b/doc/manual.rst index ee7609960..8f6aae29e 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -8005,7 +8005,7 @@ To enable thread support the ``--threads:on`` command line switch needs to be used. The ``system`` module then contains several threading primitives. See the `threads <threads.html>`_ and `channels <channels.html>`_ modules for the low level thread API. There are also high level parallelism constructs -available. See `spawn <#parallel-spawn>`_ for further details. +available. See `spawn <#parallel-amp-spawn>`_ for further details. Nim's memory model for threads is quite different than that of other common programming languages (C, Pascal, Java): Each thread has its own (garbage |