asyncstreams: replace unintended link with emphasis

This commit is contained in:
Jjp137
2019-10-17 15:00:14 -07:00
parent 59c1f7c87f
commit e6d5379b3b

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