Skip to content

Commit

Permalink
Merge pull request #121 from 5im0n/update-readme
Browse files Browse the repository at this point in the history
Update eslint.results in README.md
  • Loading branch information
adametry committed Nov 30, 2015
2 parents 328cba9 + 67fcd75 commit 6def722
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 6def722

Please sign in to comment.