summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormajecty <majecty@gmail.com>2015-05-22 21:43:13 +0900
committermajecty <majecty@gmail.com>2015-05-22 21:43:13 +0900
commit8af90e31692db66058df0acb8831922b8a6b9a19 (patch)
treebae429d402a1b1fb54875c4dddc5232e99014ac2
parenta44d11ca95304dca673e6487050e630c2b2d87ee (diff)
downloadasync-8af90e31692db66058df0acb8831922b8a6b9a19.tar.gz
Update README.md
Fix document errors about 'times' and 'timesSeries'.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4e0b9fc..6775ad5 100644
--- a/README.md
+++ b/README.md
@@ -1573,9 +1573,9 @@ call_order.push('one')
```
<a name="times" />
-### times(n, callback)
+### times(n, iterator, callback)
-Calls the `callback` function `n` times, and accumulates results in the same manner
+Calls the `iterator` function `n` times, and accumulates results in the same manner
you would use with [`map`](#map).
__Arguments__
@@ -1604,7 +1604,7 @@ async.times(5, function(n, next){
```
<a name="timesSeries" />
-### timesSeries(n, callback)
+### 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.