Skip to content

Commit d10cbc7

Browse files
committed
Fix mistakes in README examples
1 parent 04237c8 commit d10cbc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ You can accept parameters in a task by wrapping the task function in `parameteri
2626
```javascript
2727
var parameterized = require('gulp-parameterized');
2828

29-
gulp.task('hello', parameterized(function(cb, params)) {
29+
gulp.task('hello', parameterized(function(cb, params) {
3030
console.log('hello ' + params.name + '!');
3131
cb();
32-
});
32+
}));
3333
```
3434

3535
You can then pass parameters to a task on the command line:
3636

3737
```
38-
$ gulp hello --name world!
38+
$ gulp hello --name world
3939
[23:43:51] Using gulpfile ~/hello-example/gulpfile.js
4040
[23:43:51] Starting 'hello'...
4141
hello world!

0 commit comments

Comments
 (0)