From fd232fc2e52e4b761a6da1b3e3e53116474a8465 Mon Sep 17 00:00:00 2001 From: Julian Grinblat Date: Sun, 14 Jun 2015 14:34:55 +0900 Subject: [PATCH] Fix timesSeries documentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 580d79737..2fa8f46fb 100644 --- a/README.md +++ b/README.md @@ -1646,8 +1646,8 @@ async.times(5, function(n, next){ ### timesSeries(n, iterator, [callback]) -The same as [`times`](#times), only the iterator is applied to each item in `arr` in -series. The next `iterator` is only called once the current one has completed. +The same as [`times`](#times), only the iterator is applied in series. +The next `iterator` is only called once the current one has completed. The results array will be in the same order as the original.