Skip to content

Commit 2cafc52

Browse files
authored
fix(docs): fix broken examples in code refs #20
1 parent d213581 commit 2cafc52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var File = require('vinyl');
2525
*
2626
* // Generating a pretty HTML documentation site
2727
* gulp.src('./index.js')
28-
* .pipe(gulpDocumentation('html))
28+
* .pipe(gulpDocumentation('html'))
2929
* .pipe(gulp.dest('html-documentation'));
3030
*
3131
* // Generating raw JSON documentation output
@@ -41,7 +41,7 @@ var File = require('vinyl');
4141
* gulp.task('documentation-multiple-files', function () {
4242
*
4343
* gulp.src('./src/*.js')
44-
* .pipe(gulpDocumentation({ format: 'md' }))
44+
* .pipe(gulpDocumentation('md'))
4545
* .pipe(gulp.dest('md-documentation'));
4646
*
4747
* });

0 commit comments

Comments
 (0)