summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorhuantian <davidtianli@gmail.com>2022-04-24 02:47:39 -0700
committerGitHub <noreply@github.com>2022-04-24 10:47:39 +0100
commit02e8aa9660ae78a4d6a67656709f9379f30c5197 (patch)
tree314a427a39224f5a9deda7df98bc1afe55b19307 /lib
parentbb839029d5065bcd8367661802bf04e1e7eebb58 (diff)
downloadNim-02e8aa9660ae78a4d6a67656709f9379f30c5197.tar.gz
Fix doc: list of async backends (#19741)
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/asyncdispatch.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim
index b67b0c308..b1e1c19fd 100644
--- a/lib/pure/asyncdispatch.nim
+++ b/lib/pure/asyncdispatch.nim
@@ -187,9 +187,9 @@
 ##
 ## Known `async` backends include:
 ##
-## * `none` - ``-d:asyncBackend=none`` - disable ``async`` support completely
-## * `asyncdispatch <https://nim-lang.org/docs/asyncdispatch.html> -``-d:asyncBackend=asyncdispatch``
-## * `chronos <https://github.com/status-im/nim-chronos/>` - ``-d:asyncBackend=chronos``
+## * `-d:asyncBackend=none`: disable `async` support completely
+## * `-d:asyncBackend=asyncdispatch`: https://nim-lang.org/docs/asyncdispatch.html
+## * `-d:asyncBackend=chronos`: https://github.com/status-im/nim-chronos/
 ##
 ## ``none`` can be used when a library supports both a synchronous and
 ## asynchronous API, to disable the latter.