typofix - https://github.com/vlajos/misspell_fixer
authorVeres Lajos <vlajos@gmail.com>
Fri, 7 Aug 2015 21:28:51 +0000 (22:28 +0100)
committerVeres Lajos <vlajos@gmail.com>
Fri, 7 Aug 2015 21:28:51 +0000 (22:28 +0100)
History.md
README.md
test/integration-test.js

index 92270d8..2c282d1 100644 (file)
 ==================
 
 * 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.
index e77828c..ac40dd4 100644 (file)
--- 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)
 
index 4585524..f2b7437 100644 (file)
@@ -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}'
       ]