Skip to content

Commit

Permalink
Fix confusing example
Browse files Browse the repository at this point in the history
Remove useless and confusing `return` statement in "function argument" example.
cf. 'ignores the return value': `test/rename.spec.js:156`
  • Loading branch information
lleaff committed Dec 9, 2016
1 parent 17d44ec commit fa84ece
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -25,7 +25,6 @@ gulp.src("./src/**/hello.txt")
path.dirname += "/ciao";
path.basename += "-goodbye";
path.extname = ".md";
return path;
}))
.pipe(gulp.dest("./dist")); // ./dist/main/text/ciao/hello-goodbye.md

Expand Down

0 comments on commit fa84ece

Please sign in to comment.