stdlib: asyncdispatch: all: typo fixed.

This commit is contained in:
Konstantin Molchanov
2016-05-31 15:33:41 +04:00
parent 6e8053853b
commit c821cebf27

View File

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