diff --git a/README.md b/README.md index 421d46e..0292e31 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ async.map(['file1','file2','file3'], fs.stat, function(err, results){ // results is now an array of stats for each file }); -//async with suspend +// async with suspend var res = yield async.map(['file1','file2','file3'], fs.stat, resume); ```