From 666b1c5ae7405e51b8c81814584e31793bfbb525 Mon Sep 17 00:00:00 2001 From: Michael Lohmann Date: Thu, 10 Mar 2022 14:50:14 +0100 Subject: [PATCH] README: clarify relative complement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7060180b..986f7a7c 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ combiner even if `or` is used (this is an API implementation specificity). | ------------------- | :----------: | ------- | |`or`/`,` combiner
(union) | ![Union of queries](img/union.svg) | `> .5% or last 2 versions`
`> .5%, last 2 versions` | | `and` combiner
(intersection) | ![intersection of queries](img/intersection.svg) | `> .5% and last 2 versions` | -| `not` combiner
(relative complement) | ![Relative complement of queries](img/complement.svg) | All those three are equivalent to the first one
`> .5% and not last 2 versions`
`> .5% or not last 2 versions`
`> .5%, not last 2 versions` | +| `not` combiner
(relative complement) | ![Relative complement of queries](img/complement.svg) | These three are equivalent to one another:
`> .5% and not last 2 versions`
`> .5% or not last 2 versions`
`> .5%, not last 2 versions` | _A quick way to test your query is to do `npx browserslist '> 0.5%, not IE 11'` in your terminal._