Browse Source

Fixed typo in README.md

There appeared to be a spacing error for line 13 and an extra paren on line 14.
pull/2597/head
Jammie 9 years ago
parent
commit
d6dace4824
1 changed files with 3 additions and 5 deletions
  1. 8
      tasks/README.md

8
tasks/README.md

@ -10,8 +10,6 @@
These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools
```javascript
var
watch = require('path/to/semantic/tasks/watch')
;
gulp.task('watch ui', 'Watch Semantic UI', watch));
```
var watch = require('path/to/semantic/tasks/watch');
gulp.task('watch ui', 'Watch Semantic UI', watch);
```
Loading…
Cancel
Save