diff --git a/README.md b/README.md index 385d669..c99ed9a 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ var csslint = require('gulp-csslint'); gulp.task('lint', function() { gulp.files('lib/*.css') .pipe(csslint()) - .pipe(csslint.reoprter()) // Display errors + .pipe(csslint.reporter()) // Display errors .pipe(csslint.failReporter()); // Fail on error }); ```