diff --git a/docs/getting-started.md b/docs/getting-started.md index 732591118..42fd017c1 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -20,10 +20,13 @@ $ npm install --save-dev gulp ```js var gulp = require('gulp'); -gulp.task('default', function(done) { +gulp.task('default', defaultTask); + +function defaultTask(done) { // place code for your default task here done(); -}); +} + ``` #### 4. Run gulp: @@ -40,7 +43,7 @@ To run individual tasks, use `gulp `. You have an empty gulpfile and everything is installed. How do you REALLY get started? Check out the [recipes](recipes) and the [list of articles](README.md#articles) for more information. -## .src, .watch, .dest, CLI args - How do I use these things? +## .src, .watch, .dest, .parallel, .series, CLI args - How do I use these things? For API specific documentation you can check out the [documentation for that](API.md).