We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6c4178 commit fea4f20Copy full SHA for fea4f20
1 file changed
lib/csscomb.js
@@ -9,7 +9,6 @@ var vfs = require('vow-fs');
9
* @name Comb
10
*/
11
var Comb = function() {
12
- this._handlers;
13
this._options = [
14
'always-semicolon',
15
'color-case',
@@ -24,7 +23,6 @@ var Comb = function() {
24
23
'unitless-zero',
25
'sort-order'
26
];
27
- this._config = {};
28
this._exclude = null;
29
};
30
@@ -151,7 +149,7 @@ Comb.prototype = {
151
149
},
152
150
153
/**
154
- * Processs directory or file.
+ * Process directory or file.
155
*
156
* @param {String} path
157
@@ -177,7 +175,7 @@ Comb.prototype = {
177
175
178
176
179
180
- * Returns true if specified path is not in exluded list.
+ * Returns true if specified path is not in excluded list.
181
182
* @returns {Boolean}
183
0 commit comments