summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Houchins <jesse.houchins@tstmedia.com>2014-03-28 23:38:19 -0500
committerJesse Houchins <jesse.houchins@tstmedia.com>2014-03-28 23:38:19 -0500
commitdf06f5d166c4cf8930d9db2afd8410fadb1bd241 (patch)
tree6b6acec48f7f133cdb459d88c8ee36d0b1a640ae
parent049eda0877b652246622a6e0edc3aef8d14ceac6 (diff)
downloadasync-df06f5d166c4cf8930d9db2afd8410fadb1bd241.tar.gz
fix some poor spelling
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 278c315..bb4b8c2 100644
--- a/README.md
+++ b/README.md
@@ -1339,11 +1339,11 @@ __Arguments__
* `task(callback, results)` - A function which receives two arguments: (1) a `callback(err, result)`
which must be called when finished, passing `err` (which can be `null`) and the `result` of
the function's execution, and (2) a `results` object, containing the results of
- the previously executed functions (if nested inside another controll flow).
+ the previously executed functions (if nested inside another control flow).
* `callback(err, results)` - An optional callback which is called when the
task has succeeded, or after the final failed attempt. It receives the `err` and `result` arguments of the last attempt at completing the `task`.
-The [`retry`](#retry) function can be used as a stand-alone controll flow by passing a
+The [`retry`](#retry) function can be used as a stand-alone control flow by passing a
callback, as shown below:
```js
@@ -1352,7 +1352,7 @@ async.retry(3, apiMethod, function(err, result) {
});
```
-It can also be embeded within other controll flow functions to retry individual methods
+It can also be embeded within other control flow functions to retry individual methods
that are not as reliable, like this:
```js