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).