Skip to content

Commit 5c7fb33

Browse files
committed
Fix unclosed documentation
1 parent 9722ea1 commit 5c7fb33

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Node-specific properties:
9999

100100
- **value**: The text content of the string.
101101
- **quote**: The quotation mark surrounding the string, either `"` or `'`.
102-
- **unclosed**: True when the string has no end. e.g. `"unclosed string `.
102+
- **unclosed**: `true` if the string was not closed properly. e.g. `"unclosed string `.
103103

104104
### div
105105

@@ -130,7 +130,7 @@ A CSS comment starts with `/*` and ends with `*/`
130130
Node-specific properties:
131131

132132
- **value**: The comment value without `/*` and `*/`
133-
- **unclosed**: True when the comment has no end. e.g. `/* comment without an end `.
133+
- **unclosed**: `true` if the comment was not closed properly. e.g. `/* comment without an end `.
134134

135135
### function
136136

@@ -146,7 +146,7 @@ Additional properties:
146146
- **after**: Whitespace before the closing parenthesis and after the last argument,
147147
e.g. ` ` in `rgb(0,0,0 )`.
148148
- **nodes**: More nodes representing the arguments to the function.
149-
- **unclosed**: True when the parentheses has no end. e.g. `( function-without-end `.
149+
- **unclosed**: `true` if the parentheses was not closed properly. e.g. `( unclosed-function `.
150150

151151
Media features surrounded by parentheses are considered functions with an
152152
empty value. For example, `(min-width: 700px)` parses to these nodes:

0 commit comments

Comments
 (0)