Skip to content

Commit 08aa851

Browse files
committed
Refactor to prefer single quotes
1 parent 376fa62 commit 08aa851

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ containing a value.
9999

100100
```idl
101101
interface Root <: Parent {
102-
type: "root"
102+
type: 'root'
103103
}
104104
```
105105

@@ -113,7 +113,7 @@ never as a *[child][term-child]*.
113113

114114
```idl
115115
interface Element <: Parent {
116-
type: "element"
116+
type: 'element'
117117
tagName: string
118118
properties: Properties?
119119
content: Root?
@@ -288,7 +288,7 @@ For example, `<div class="alpha bravo"></div>` is represented as `['alpha',
288288

289289
```idl
290290
interface Doctype <: Node {
291-
type: "doctype"
291+
type: 'doctype'
292292
}
293293
```
294294

@@ -311,7 +311,7 @@ Yields:
311311

312312
```idl
313313
interface Comment <: Literal {
314-
type: "comment"
314+
type: 'comment'
315315
}
316316
```
317317

@@ -334,7 +334,7 @@ Yields:
334334

335335
```idl
336336
interface Text <: Literal {
337-
type: "text"
337+
type: 'text'
338338
}
339339
```
340340

0 commit comments

Comments
 (0)