diff options
author | Jjp137 <Jjp137@users.noreply.github.com> | 2019-10-17 15:00:14 -0700 |
---|---|---|
committer | Jjp137 <Jjp137@users.noreply.github.com> | 2019-10-22 17:59:12 -0700 |
commit | e6d5379b3b0c5ea00ea59b74ed2ec35d2bd0a3da (patch) | |
tree | 377611d863e6e13bfdc32fd3008cdca6c3a1fea5 /lib | |
parent | 59c1f7c87f55e06e1beccf0bfafb0b3867a798c5 (diff) | |
download | Nim-e6d5379b3b0c5ea00ea59b74ed2ec35d2bd0a3da.tar.gz |
asyncstreams: replace unintended link with emphasis
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/asyncstreams.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncstreams.nim b/lib/pure/asyncstreams.nim index 42cdd7d13..44e73003e 100644 --- a/lib/pure/asyncstreams.nim +++ b/lib/pure/asyncstreams.nim @@ -60,7 +60,7 @@ proc `callback=`*[T](future: FutureStream[T], proc finished*[T](future: FutureStream[T]): bool = ## Check if a ``FutureStream`` is finished. ``true`` value means that - ## no more data will be placed inside the stream _and_ that there is + ## no more data will be placed inside the stream *and* that there is ## no data waiting to be retrieved. result = future.finished and future.queue.len == 0 |