summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Young <ian.greenleaf@gmail.com>2012-03-12 14:13:08 -0700
committerIan Young <ian.greenleaf@gmail.com>2012-03-12 14:13:08 -0700
commitb54d0d183595395ef6e96ca088312b2b0baed3e3 (patch)
treeb53f09a6fff8c95041d7cc0e59ebb02e5c7a7fd1
parent659b995ff42fc55b68c4c1f4cc15badbb4346a5c (diff)
downloadasync-b54d0d183595395ef6e96ca088312b2b0baed3e3.tar.gz
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.
});