summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGary Ye <garysye@gmail.com>2015-09-17 20:29:31 -0700
committerGary Ye <garysye@gmail.com>2015-09-17 20:29:31 -0700
commita7534f6be33734dc9424985665437b2f80709cd1 (patch)
treed3a2582ac06874121eefb9124a5c2f537607f475 /README.md
parent730fe4a36a99d2b0330e1dcae104ebf8f3796086 (diff)
downloadasync-a7534f6be33734dc9424985665437b2f80709cd1.tar.gz
Fixes a typo in the Readme
Corrects 'embeded' to 'embedded'
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d390b15..0b86613 100644
--- a/README.md
+++ b/README.md
@@ -1417,7 +1417,7 @@ async.retry({times: 3, interval: 200}, apiMethod, function(err, result) {
});
```
-It can also be embeded within other control flow functions to retry individual methods
+It can also be embedded within other control flow functions to retry individual methods
that are not as reliable, like this:
```js