Skip to content

Commit e345e1e

Browse files
author
Caolan McMahon
committed
Merge pull request caolan#394 from lupomontero/master
Changed `async.map` to `async.mapLimit` in mapLimit example
2 parents d8601a1 + daf5190 commit e345e1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ __Arguments__
295295
__Example__
296296

297297
```js
298-
async.map(['file1','file2','file3'], 1, fs.stat, function(err, results){
298+
async.mapLimit(['file1','file2','file3'], 1, fs.stat, function(err, results){
299299
// results is now an array of stats for each file
300300
});
301301
```

0 commit comments

Comments
 (0)