summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Grinblat <julian@dotcore.co.il>2015-06-14 14:34:55 +0900
committerJulian Grinblat <julian@dotcore.co.il>2015-06-14 14:34:55 +0900
commitfd232fc2e52e4b761a6da1b3e3e53116474a8465 (patch)
treeb63de9449e8df255d3b6e40e6df0a3993b3d5e5b
parentc52520ae5d342e2010fdc087616f01643fc5342b (diff)
downloadasync-fd232fc2e52e4b761a6da1b3e3e53116474a8465.tar.gz
Fix timesSeries documentation
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 580d797..2fa8f46 100644
--- a/README.md
+++ b/README.md
@@ -1646,8 +1646,8 @@ async.times(5, function(n, next){
<a name="timesSeries" />
### 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.
<a name="timesLimit" />