Skip to content

Commit 7ef583d

Browse files
committed
Fixing var statement syntax in Readme
1 parent 64e5d58 commit 7ef583d

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
@@ -66,9 +66,9 @@ npm install --save-dev gulp react-component-gulp-tasks
6666
In your gulpfile, call this package with your `gulp` instance and `config`. It will add the tasks to gulp for you. You can also add your own tasks if you want.
6767

6868
```javascript
69-
var gulp = require('gulp'),
70-
initGulpTasks = require('react-component-gulp-tasks'),
71-
taskConfig = require('./config');
69+
var gulp = require('gulp');
70+
var initGulpTasks = require('react-component-gulp-tasks');
71+
var taskConfig = require('./config');
7272

7373
initGulpTasks(gulp, taskConfig);
7474
```

0 commit comments

Comments
 (0)