Skip to content

Commit

Permalink
Merge pull request gulpjs#218 from shanestillwell/patch-1
Browse files Browse the repository at this point in the history
Fix missing parenthesis in code example
  • Loading branch information
yocontra committed Jan 29, 2014
2 parents c6c557b + b9db187 commit ac1c652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/mocha-test-runner-with-gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ gulp.task('watch', function() {
gulp.src(['lib/**', 'test/**'], { read: false })
.pipe(watch(function(events, cb) {
gulp.run('mocha', cb);
});
}));
});

gulp.task('default', ['mocha', 'watch']);
Expand Down

0 comments on commit ac1c652

Please sign in to comment.