mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 21:17:48 +00:00
stdlib: asyncdispatch: all: typo fixed.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user