From c821cebf27a4ffa923580c5c034074eeb6547dca Mon Sep 17 00:00:00 2001 From: Konstantin Molchanov Date: Tue, 31 May 2016 15:33:41 +0400 Subject: [PATCH] stdlib: asyncdispatch: `all`: typo fixed. --- lib/pure/asyncdispatch.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index 2d34749a91..aa3fff581d 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -363,7 +363,7 @@ proc all*[T](futs: varargs[Future[T]]): Future[seq[T]] = ## in the order they are passed. var - retFuture = newFuture[seq[A]]("asyncdispatch.all") + retFuture = newFuture[seq[T]]("asyncdispatch.all") retValues = newSeq[T](len(futs)) completedFutures = 0