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
This commit is contained in:
ringabout
2022-11-09 23:50:14 +08:00
committed by GitHub
parent f11b7debf7
commit 25cb19a8fe

View File

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