diff options
author | metagn <metagngn@gmail.com> | 2022-12-06 11:37:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 09:37:03 +0100 |
commit | 739e1badb6e48741e28420739769d3714ac6ceda (patch) | |
tree | 745718d54a61118535ae657ec884dc5bee6d83a6 /lib/pure/async.nim | |
parent | 5d469686b05ba0435690fccf6fb6f7d95cf09c73 (diff) | |
download | Nim-739e1badb6e48741e28420739769d3714ac6ceda.tar.gz |
stdlib organization & documentation improvements (#20971)
* stdlib organization & documentation improvements * fix CI * Update doc/lib.md Co-authored-by: Juan Carlos <juancarlospaco@gmail.com> * fix ci, remove jshttpcore, export in jsfetch instead * fix alphabetical order violations * add cmdline, db_odbc Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
Diffstat (limited to 'lib/pure/async.nim')
-rw-r--r-- | lib/pure/async.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/async.nim b/lib/pure/async.nim index 482ab32c6..249c5f639 100644 --- a/lib/pure/async.nim +++ b/lib/pure/async.nim @@ -1,3 +1,6 @@ +## Exports [asyncmacro](asyncmacro.html) and [asyncfutures](asyncfutures.html) for native backends, +## and [asyncjs](asyncjs.html) on the JS backend. + when defined(js): import asyncjs export asyncjs |