From 25cb19a8feb384ee1b830e35ca8c370b34112697 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Wed, 9 Nov 2022 23:50:14 +0800 Subject: [PATCH] fixes documentation regression and a bit clean up (#20793) * fixes documentation regression and a bit clean up follow up https://github.com/nim-lang/Nim/pull/20371 * Apply suggestions from code review * Apply suggestions from code review --- doc/lib.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/doc/lib.md b/doc/lib.md index 082437ebc6..636e60eb8a 100644 --- a/doc/lib.md +++ b/doc/lib.md @@ -37,11 +37,6 @@ Automatic imports implicitly by the compiler. Do not import it directly. It relies on compiler magic to work. -* [threads](threads.html) - Basic Nim thread support. **Note:** This is part of the system module. Do not - import it explicitly. Enabled with `--threads:on`:option:. - - Core ---- @@ -292,12 +287,12 @@ Internet Protocols and Support This module implements asynchronous file reading and writing using `asyncdispatch`. -* `asyncftpclient](asyncftpclient.html) - [his module implements an asynchronous FTP client using the `asyncnet` +* [asyncftpclient](asyncftpclient.html) + This module implements an asynchronous FTP client using the `asyncnet` module. -* `asynchttpserver](asynchttpserver.html) - [his module implements an asynchronous HTTP server using the `asyncnet` +* [asynchttpserver](asynchttpserver.html) + This module implements an asynchronous HTTP server using the `asyncnet` module. * [asyncnet](asyncnet.html) @@ -341,6 +336,9 @@ Internet Protocols and Support Threading --------- +* [threads](threads.html) + Basic Nim thread support. + * [threadpool](threadpool.html) Implements Nim's [spawn](manual_experimental.html#parallel-amp-spawn).