asyncstreams: replace unintended link with emphasis

(cherry picked from commit e6d5379b3b)
This commit is contained in:
Jjp137
2019-10-17 15:00:14 -07:00
committed by narimiran
parent eac5452082
commit f042acc535

View File

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