summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2015-11-05 11:50:55 -0800
committerAlexander Early <alexander.early@gmail.com>2015-11-05 11:50:55 -0800
commitb0797ca40b102012b582d17e1825ae81731b15da (patch)
tree298bd188fcd1302d672b33ce0a125d4b53e6909a /README.md
parent409827850d15ad1491e88eb19165b7a3d583274e (diff)
downloadasync-b0797ca40b102012b582d17e1825ae81731b15da.tar.gz
Clarify parallel callback
Fixes #953.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 071d069..1d8f535 100644
--- a/README.md
+++ b/README.md
@@ -773,7 +773,7 @@ __Arguments__
a `callback(err, result)` which it must call on completion with an error `err`
(which can be `null`) and an optional `result` value.
* `callback(err, results)` - An optional callback to run once all the functions
- have completed. This function gets a results array (or object) containing all
+ have completed successfully. This function gets a results array (or object) containing all
the result arguments passed to the task callbacks.
__Example__