From e6d5379b3b0c5ea00ea59b74ed2ec35d2bd0a3da Mon Sep 17 00:00:00 2001 From: Jjp137 Date: Thu, 17 Oct 2019 15:00:14 -0700 Subject: [PATCH] asyncstreams: replace unintended link with emphasis --- lib/pure/asyncstreams.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/asyncstreams.nim b/lib/pure/asyncstreams.nim index 42cdd7d133..44e73003ee 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