summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Voyer <wouaren@gmail.com>2017-04-19 17:05:33 +0200
committerGitHub <noreply@github.com>2017-04-19 17:05:33 +0200
commita663bec65db4cdb44d5503c68778bf9f37d98071 (patch)
treec318d71f40f85fcdb7b73dbb4ed5340f369da6ba
parentb9758d1d3808dd26d395cdfb4715f01a480991fb (diff)
downloadasync-a663bec65db4cdb44d5503c68778bf9f37d98071.tar.gz
Update intro.md
-rw-r--r--intro.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/intro.md b/intro.md
index 37af316..9823be1 100644
--- a/intro.md
+++ b/intro.md
@@ -18,7 +18,7 @@ Async is also installable via:
- [bower](http://bower.io/): `bower install async`
Async provides around 70 functions that include the usual 'functional'
-suspects (`map`, `reduce`, `filter`, `each`…) as cwell as some common patterns
+suspects (`map`, `reduce`, `filter`, `each`…) as well as some common patterns
for asynchronous control flow (`parallel`, `series`, `waterfall`…). All these
functions assume you follow the Node.js convention of providing a single
callback as the last argument of your asynchronous function -- a callback which expects an Error as its first argument -- and calling the callback once.