Skip to content

Commit

Permalink
fix(docs): fix broken examples in code refs #20
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcw committed Nov 28, 2016
1 parent d213581 commit 2cafc52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var File = require('vinyl');
*
* // Generating a pretty HTML documentation site
* gulp.src('./index.js')
* .pipe(gulpDocumentation('html))
* .pipe(gulpDocumentation('html'))
* .pipe(gulp.dest('html-documentation'));
*
* // Generating raw JSON documentation output
Expand All @@ -41,7 +41,7 @@ var File = require('vinyl');
* gulp.task('documentation-multiple-files', function () {
*
* gulp.src('./src/*.js')
* .pipe(gulpDocumentation({ format: 'md' }))
* .pipe(gulpDocumentation('md'))
* .pipe(gulp.dest('md-documentation'));
*
* });
Expand Down

0 comments on commit 2cafc52

Please sign in to comment.