From 92841c1715c44f89591fe3bc8ebdcb5114c9b64b Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 5 Dec 2015 22:59:22 +0100 Subject: [PATCH] fix comment typo --- ts/modulebrowserify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/modulebrowserify.ts b/ts/modulebrowserify.ts index be510c4..a4142f9 100644 --- a/ts/modulebrowserify.ts +++ b/ts/modulebrowserify.ts @@ -2,7 +2,7 @@ module GulpBrowserBrowserify { export function init() { return function() { - return through.obj((file, enc, cb) => { //this is the trough object that gets returned by gulpBrowser.browserify(); + return through.obj((file, enc, cb) => { //this is the through object that gets returned by gulpBrowser.browserify(); var bundleCallback = function(err, bufferedContent) { if (Buffer.isBuffer(bufferedContent)){ file.contents = bufferedContent;