diff options
author | Elliot Waite <elliot@elliotwaite.com> | 2021-06-29 19:21:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 19:21:30 -0700 |
commit | afe5eb569b36ed310f6f93a33ae52274a6dce02e (patch) | |
tree | a77662d182f1f7c837f5ece9735c50faa57be8bf /lib/pure | |
parent | 36d24846b6685a44ff2185a823cdcb0f3bc236d3 (diff) | |
download | Nim-afe5eb569b36ed310f6f93a33ae52274a6dce02e.tar.gz |
Add commas to docs for clarity (#18398)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/asyncdispatch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index b88d5ede8..17fd5f824 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -61,8 +61,8 @@ ## callback on this future which will be called once the future completes. ## All the callback does is write the data stored in the future to `stdout`. ## The `read` function is used for this and it checks whether the future -## completes with an error for you (if it did it will simply raise the -## error), if there is no error however it returns the value of the future. +## completes with an error for you (if it did, it will simply raise the +## error), if there is no error, however, it returns the value of the future. ## ## Asynchronous procedures ## ======================= |