Skip to content

Commit

Permalink
console.dir -> console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
substack committed Mar 10, 2020
1 parent 0efed03 commit 47acf72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/parse.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var argv = require('../')(process.argv.slice(2));
console.dir(argv);
console.log(argv);
2 changes: 1 addition & 1 deletion readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fanciful decoration.

``` js
var argv = require('minimist')(process.argv.slice(2));
console.dir(argv);
console.log(argv);
```

```
Expand Down

0 comments on commit 47acf72

Please sign in to comment.