From d6dace4824b3b1eea5263699b49e008d9f9d84b3 Mon Sep 17 00:00:00 2001 From: Jammie Date: Sat, 11 Jul 2015 15:03:56 -0700 Subject: [PATCH] Fixed typo in README.md There appeared to be a spacing error for line 13 and an extra paren on line 14. --- tasks/README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tasks/README.md b/tasks/README.md index 9dc33c717..323475cb5 100644 --- a/tasks/README.md +++ b/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)); -``` \ No newline at end of file +var watch = require('path/to/semantic/tasks/watch'); +gulp.task('watch ui', 'Watch Semantic UI', watch); +```