fix comment typo

This commit is contained in:
Philipp Kunz 2015-12-05 22:59:22 +01:00
parent 07b6fea447
commit 92841c1715

View File

@ -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;