From fad23d8961c2dbf5f2d90477318ae91aa813c6ff Mon Sep 17 00:00:00 2001 From: Artem Anikeev Date: Wed, 12 Jan 2022 19:57:55 +0200 Subject: [PATCH] Fix misspelling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcc434ac..bb044aa2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A CSS parser, transformer, and minifier written in Rust. - **Minification** – One of the main purposes of `@parcel/css` is to minify CSS to make it smaller. This includes many optimizations including: - Combining longhand properties into shorthands where possible. - Merging adjacent rules with the same selectors or declarations when it is safe to do so. - - Combining CSS transforms into a single matrix or visa versa when smaller. + - Combining CSS transforms into a single matrix or vice versa when smaller. - Removing vendor prefixes that are not needed, based on the provided browser targets. - Reducing `calc()` expressions where possible. - Converting colors to shorter hex notation where possible.