From: Veres Lajos Date: Fri, 7 Aug 2015 21:28:51 +0000 (+0100) Subject: typofix - https://github.com/vlajos/misspell_fixer X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=31d2b07f8c4cd66adc7c744059aae189455bf5f2;p=clean-css.git typofix - https://github.com/vlajos/misspell_fixer --- diff --git a/History.md b/History.md index 92270d8e..2c282d1c 100644 --- a/History.md +++ b/History.md @@ -405,7 +405,7 @@ ================== * Improved performance of advanced mode validators. -* Fixed issue [#307](https://github.com/jakubpawlowicz/clean-css/issues/307) - `background-color` in muliple backgrounds. +* Fixed issue [#307](https://github.com/jakubpawlowicz/clean-css/issues/307) - `background-color` in multiple backgrounds. * Fixed issue [#322](https://github.com/jakubpawlowicz/clean-css/issues/322) - adds `background-size` support. * Fixed issue [#323](https://github.com/jakubpawlowicz/clean-css/issues/323) - stripping variable references. * Fixed issue [#325](https://github.com/jakubpawlowicz/clean-css/issues/325) - removing invalid `@charset` declarations. diff --git a/README.md b/README.md index e77828c1..ac40dd4b 100644 --- a/README.md +++ b/README.md @@ -328,11 +328,11 @@ with the following options available: * `'[+-]units.vmin'` - turn on / off treating `vmin` as a proper unit * `'[+-]units.vm'` - turn on / off treating `vm` as a proper unit -For example, using `--compatibility 'ie8,+units.rem'` will ensure IE8 compatiblity while enabling `rem` units so the following style `margin:0px 0rem` can be shortened to `margin:0`, while in pure IE8 mode it can't be. +For example, using `--compatibility 'ie8,+units.rem'` will ensure IE8 compatibility while enabling `rem` units so the following style `margin:0px 0rem` can be shortened to `margin:0`, while in pure IE8 mode it can't be. To pass a single off (-) switch in CLI please use the following syntax `--compatibility *,-units.rem`. -In library mode you can also pass `compatiblity` as a hash of options. +In library mode you can also pass `compatibility` as a hash of options. ## Acknowledgments (sorted alphabetically) diff --git a/test/integration-test.js b/test/integration-test.js index 4585524e..f2b7437c 100644 --- a/test/integration-test.js +++ b/test/integration-test.js @@ -799,11 +799,11 @@ vows.describe('integration tests') 'div{margin:.1em .1em .1em .1em}', 'div{margin:.1em}' ], - 'preceeding value': [ + 'preceding value': [ 'div{padding:010px 00015px}', 'div{padding:10px 15px}' ], - 'preceeding value with fraction zeros': [ + 'preceding value with fraction zeros': [ 'div{padding:010.0em .05rem}', 'div{padding:10em .05rem}' ]