Skip to content

Commit

Permalink
re-fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aearly committed Feb 27, 2016
1 parent 9333133 commit 53c3c49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -36,7 +36,7 @@ async.map(['file1','file2','file3'], fs.stat, function(err, results){

async.filter(['file1','file2','file3'], function(filePath, callback) {
fs.access(filePath, function(err) {
callback(!err)
callback(null, !err)
});
}, function(results){
// results now equals an array of the existing files
Expand Down Expand Up @@ -417,7 +417,7 @@ __Example__
```js
async.filter(['file1','file2','file3'], function(filePath, callback) {
fs.access(filePath, function(err) {
callback(!err)
callback(null, !err)
});
}, function(results){
// results now equals an array of the existing files
Expand Down

0 comments on commit 53c3c49

Please sign in to comment.