diff options
author | flywind <xzsflywind@gmail.com> | 2021-03-12 20:04:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 13:04:32 +0100 |
commit | 2e730f1452254ae7c86d89b167f0fe9e002f57b4 (patch) | |
tree | 65ac152aef5e3214b3577f8c5dc3b978275dcdb9 /doc | |
parent | d97bf4f1c80ef41789ecfc3430e04293d2b20043 (diff) | |
download | Nim-2e730f1452254ae7c86d89b167f0fe9e002f57b4.tar.gz |
rename channels to channels_builtin (#17330)
* improve test coverage for isolation * a bit better * rename channels to channels_builtin
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 47ede70ee..2a4c2c03c 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -39,7 +39,7 @@ Automatic imports Basic Nim thread support. **Note:** This is part of the system module. Do not import it explicitly. Enabled with ``--threads:on``. -* `channels <channels.html>`_ +* `channels <channels_builtin.html>`_ Nim message passing support for threads. **Note:** This is part of the system module. Do not import it explicitly. Enabled with ``--threads:on``. diff --git a/doc/manual.rst b/doc/manual.rst index 4686247d2..89b3bdb94 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -7721,7 +7721,7 @@ Threads 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 +See the `threads <threads.html>`_ and `channels <channels_builtin.html>`_ modules for the low-level thread API. There are also high-level parallelism constructs available. See `spawn <manual_experimental.html#parallel-amp-spawn>`_ for further details. |