summaryrefslogtreecommitdiff
path: root/intro.md
diff options
context:
space:
mode:
Diffstat (limited to '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.