[csswg-drafts] Pull Request: [css-nesting-1] fix nesting example

jonathantneal has just submitted a new pull request for https://github.com/w3c/csswg-drafts:

== [css-nesting-1] fix nesting example ==
[css-nesting-1] fix the nesting example

This changes adds a missing nesting selector (`&`) to an example in the CSS Nesting specification.

The current example, without a nesting selector:

```css
article {
  color: blue;
  :where(&) { color: red; }
}
```

The fixed example, with a nesting selector:

```css
article {
  color: blue;
  &:where(&) { color: red; }
}
```

See https://github.com/w3c/csswg-drafts/pull/6394


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 17 June 2021 20:24:40 UTC