Skip to content

Commit

Permalink
Fix readme typo (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladshcherbin authored and sindresorhus committed Jan 24, 2019
1 parent 434c9f6 commit 2b3ee82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const del = require('del');
(async () => {
const deletedPaths = await del(['tmp/*.js'], {dryRun: true});

console.log('Files and folders that would be deleted:\n', paths.join('\n'));
console.log('Files and folders that would be deleted:\n', deletedPaths.join('\n'));
})();
```

Expand Down

0 comments on commit 2b3ee82

Please sign in to comment.