From 0b7967f1774aef667d576dc70c9223a5f1c5c84f Mon Sep 17 00:00:00 2001 From: Markus Hedlund Date: Mon, 9 Feb 2015 11:36:27 +0100 Subject: [PATCH] Fixed minor JS syntax error in docs --- docs/writing-a-plugin/dealing-with-streams.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing-a-plugin/dealing-with-streams.md b/docs/writing-a-plugin/dealing-with-streams.md index 4559f1b54..ae74dda3b 100644 --- a/docs/writing-a-plugin/dealing-with-streams.md +++ b/docs/writing-a-plugin/dealing-with-streams.md @@ -56,7 +56,7 @@ function gulpPrefixer(prefixText) { // returning the file stream return stream; -}; +} // exporting the plugin main function module.exports = gulpPrefixer;