Fix a broken example in the sass:selector docs (#385)

This commit is contained in:
Natalie Weizenbaum 2019-10-11 15:15:35 -07:00 committed by GitHub
parent b2ab9cbe50
commit 6e93b8526d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ aside:hover, .sidebar p` would be returned as:
[unquoted strings]: ../values/strings#unquoted
```scss
@debug selector.((unquote(".main") unquote("aside:hover")),
@debug ((unquote(".main") unquote("aside:hover")),
(unquote(".sidebar") unquote("p")));
// .main aside:hover, .sidebar p
```