From 226f0f9fc7da3c0dcf260fb07d87df03037a71b0 Mon Sep 17 00:00:00 2001 From: Eric Wafford Date: Wed, 28 Jan 2015 14:41:07 -0600 Subject: [PATCH] fix a few errors in notes of gulpfile --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9b091df..e58e38d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -19,11 +19,11 @@ var path = manifest.paths; var config = manifest.config || {}; // `globs` - These ultimately end up in their respective `gulp.src`. -// - `globs.js` - array of asset-builder js Depenency objects. Example: +// - `globs.js` - array of asset-builder js Dependency objects. Example: // ``` // { type: 'js', name: 'main.js', globs: [] } // ``` -// - `globs.css` an array of asset-builder css Depenency objects. Example: +// - `globs.css` an array of asset-builder css Dependency objects. Example: // ``` // { type: 'css', name: 'main.css', globs: [] } // ``` @@ -34,7 +34,7 @@ var globs = manifest.globs; // `project` - paths to first-party assets. // - `project.js` - array of first-party js assets -// - `project.css` - array of first-party js assets +// - `project.css` - array of first-party css assets var project = manifest.getProjectGlobs(); // CLI options