Skip to content

Commit

Permalink
Fix parameters for filter and reject Limit
Browse files Browse the repository at this point in the history
  • Loading branch information
megawac committed Jul 19, 2015
1 parent 0ae7389 commit 1f9ac1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ async.filter(['file1','file2','file3'], fs.exists, function(results){
__Related__
* filterSeries(arr, iterator, [callback])
* filterLimit(arr, iterator, [callback])
* filterLimit(arr, limit, iterator, [callback])
---------------------------------------
Expand All @@ -434,7 +434,7 @@ The opposite of [`filter`](#filter). Removes values that pass an `async` truth t
__Related__
* rejectSeries(arr, iterator, [callback])
* rejectLimit(arr, iterator, [callback])
* rejectLimit(arr, limit, iterator, [callback])
---------------------------------------
Expand Down

0 comments on commit 1f9ac1b

Please sign in to comment.