Skip to content

Commit

Permalink
Docs: Add missing parenthesis (#1599)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptb authored and phated committed Dec 31, 2017
1 parent e894312 commit 1351fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/running-tasks-in-series.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gulp.task('templates', gulp.series('clean', function() {
return gulp.src(['src/templates/*.hbs'])
// do some concatenation, minification, etc.
.pipe(gulp.dest('output/templates/'));
});
}));

gulp.task('styles', gulp.series('clean', function() {
return gulp.src(['src/styles/app.less'])
Expand Down

0 comments on commit 1351fb8

Please sign in to comment.