Skip to content

Commit

Permalink
fix EE watch docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Feb 7, 2014
1 parent eaf8229 commit 5cb352b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Names of task(s) to run when a file changes, added with `gulp.task()`

```javascript
var watcher = gulp.watch('js/**/*.js', ['uglify','reload']);
watcher.on('changed', function(event){
watcher.on('change', function(event){
console.log('File '+event.path+' was '+event.type+', running tasks...');
});
```
Expand Down

0 comments on commit 5cb352b

Please sign in to comment.