Skip to content

Commit

Permalink
Readme typos
Browse files Browse the repository at this point in the history
  • Loading branch information
vkalinichev committed Oct 27, 2016
1 parent d0b33a7 commit 94fca3f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ This:
.foo {
margin-left: 13px;
text-align: right;

}

```
Expand All @@ -60,17 +59,17 @@ This:
```
Converts to:
```css
html[dir].bar {
html[dir] .bar {
border-color: lightgray;
}

html[dir="ltr"] {
html[dir="ltr"] .bar {
float: right;
border-width: 2px 0 2px 2px;
border-style: solid dashed solid solid;
}

[dir="rtl"] .bar {
html[dir="rtl"] .bar {
float: left;
border-width: 2px 2px 2px 0;
border-style: solid solid solid dashed;
Expand Down

0 comments on commit 94fca3f

Please sign in to comment.