summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChrisWren <cthewren@gmail.com>2013-07-06 07:58:46 -0700
committerChrisWren <cthewren@gmail.com>2013-07-06 07:58:46 -0700
commite804c3e496ae72ec188949b93c65df6e2582ec3a (patch)
tree827b499082e505bbe42936d4255913a6e4a9c4f1 /README.md
parentc99537ae4837f12e918959c8bd1e70e6b1730f6e (diff)
downloadasync-e804c3e496ae72ec188949b93c65df6e2582ec3a.tar.gz
Fixed syntax error in async auto example
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 9ff1acf..31cfbab 100644
--- a/README.md
+++ b/README.md
@@ -1062,7 +1062,7 @@ extra argument. For example, this snippet of code:
```js
async.auto({
- readData: async.apply(fs.readFile, 'data.txt', 'utf-8');
+ readData: async.apply(fs.readFile, 'data.txt', 'utf-8')
}, callback);
```