Update is-state to be proper camelCase

Andrew Bonventre 2020-07-28 10:40:20 -04:00
parent 39a34e615a
commit 8eec096bcd

@ -89,8 +89,8 @@ JS can add/remove these attributes/classes. Every component must define its own
```
.Tweet { /* … */ }
.Tweet[aria-expanded=true] { /* … */ }
.Tweet.is-Blorked { /* … */ }
<article class="Tweet is-Blorked" aria-expanded="true">
.Tweet.is-blorked { /* … */ }
<article class="Tweet is-blorked" aria-expanded="true">
</article>
```