Skip to content

Commit

Permalink
Update eslint.results in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
5im0n committed Nov 29, 2015
1 parent 328cba9 commit 67fcd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -208,8 +208,8 @@ gulp.src(['**/*.js','!node_modules/**'])
.pipe(eslint.results(function (results) {
// Called once for all ESLint results.
console.log('Total Results: ' + results.length);
console.log('Total Warnings: ' + result.warningCount);
console.log('Total Errors: ' + result.errorCount);
console.log('Total Warnings: ' + results.warningCount);
console.log('Total Errors: ' + results.errorCount);
}));
```

Expand Down

0 comments on commit 67fcd75

Please sign in to comment.