Skip to content

Commit 8e5abb8

Browse files
authored
Merge pull request tcoopman#75 from kud/patch-1
Typo
2 parents ff2ce88 + b5b020f commit 8e5abb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ module.exports = function(content) {
1818
optipng: config.optipng || {},
1919
svgo: config.svgo || {}
2020
};
21-
// Remove in interlaced adn optimizationLevel checks in new major version
21+
// Remove in interlaced and optimizationLevel checks in new major version
2222
if (config.hasOwnProperty('interlaced')) {
2323
options.gifsicle.interlaced = config.interlaced;
24-
this.emitWarning("DEPRECATED. Configure gifsicle's interlaced option in it's own options. (gifsicle.interlaced)");
24+
this.emitWarning("DEPRECATED. Configure gifsicle's interlaced option in its own options. (gifsicle.interlaced)");
2525
}
2626
if (config.hasOwnProperty('optimizationLevel')) {
2727
options.optipng.optimizationLevel = config.optimizationLevel;
28-
this.emitWarning("DEPRECATED. Configure optipng's optimizationLevel option in it's own options. (optipng.optimizationLevel)");
28+
this.emitWarning("DEPRECATED. Configure optipng's optimizationLevel option in its own options. (optipng.optimizationLevel)");
2929
}
3030

3131
var callback = this.async(),
@@ -60,4 +60,4 @@ module.exports = function(content) {
6060
}
6161
};
6262

63-
module.exports.raw = true;
63+
module.exports.raw = true;

0 commit comments

Comments
 (0)