Skip to content
This repository was archived by the owner on Mar 26, 2021. It is now read-only.

Commit cda3863

Browse files
committed
Merge pull request #36 from javiercejudo/patch-1
Add missing parens in the README examples
2 parents 92774a9 + 99d877e commit cda3863

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To instrument and report on a file using Mocha as your test runner:
5454
.pipe(mocha())
5555
.pipe(cover.gather())
5656
.pipe(cover.format())
57-
.pipe(gulp.dest('reports');
57+
.pipe(gulp.dest('reports'));
5858
});
5959
```
6060

@@ -73,7 +73,7 @@ To instrument and report using Jasmine as your test system:
7373
.pipe(jasmine())
7474
.pipe(cover.gather())
7575
.pipe(cover.format())
76-
.pipe(gulp.dest('reports');
76+
.pipe(gulp.dest('reports'));
7777
});
7878
```
7979

0 commit comments

Comments
 (0)