summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolan McMahon <caolan@caolanmcmahon.com>2012-03-12 14:19:47 -0700
committerCaolan McMahon <caolan@caolanmcmahon.com>2012-03-12 14:19:47 -0700
commit035c5c81938d066fe7b3792cf9eba9f9f8c19065 (patch)
treeb53f09a6fff8c95041d7cc0e59ebb02e5c7a7fd1
parent659b995ff42fc55b68c4c1f4cc15badbb4346a5c (diff)
parentb54d0d183595395ef6e96ca088312b2b0baed3e3 (diff)
downloadasync-035c5c81938d066fe7b3792cf9eba9f9f8c19065.tar.gz
Merge pull request #113 from amco/doc_fix
Update example to reflect current behavior
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0cf7fc9..1bbbc47 100644
--- a/README.md
+++ b/README.md
@@ -572,9 +572,8 @@ __Example__
],
// optional callback
function(err, results){
- // in this case, the results array will equal ['two','one']
- // because the functions were run in parallel and the second
- // function had a shorter timeout before calling the callback.
+ // the results array will equal ['one','two'] even though
+ // the second function had a shorter timeout.
});