Skip to content

Commit 7ddd823

Browse files
committed
[css-typed-om] Small readability fix
1 parent 4f45879 commit 7ddd823

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-typed-om/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ enum StyleValueKeyword {"initial", "inherit", "revert", "unset"};
4343

4444
interface StyleValue {
4545
attribute DOMString cssString;
46-
static (StyleValue or sequence&ltStyleValue>)? parse(DOMString property, DOMString cssText);
46+
static (StyleValue or sequence<StyleValue>)? parse(DOMString property, DOMString cssText);
4747
};
4848

4949
[Constructor(StyleValueKeyword)]
@@ -59,7 +59,7 @@ representation (see <a section href="#stylevalue-normalization"></a>) of the val
5959
contained by a {{StyleValue}} object.
6060

6161
The <dfn method for=StyleValue>parse(DOMString <var>property</var>, DOMString <var>cssText</var>)</dfn>
62-
method attempts to parse <var>cssText</var> as a valid {{StyleValue}} or sequence&lt;{{StyleValue> for
62+
method attempts to parse <var>cssText</var> as a valid {{StyleValue}} or sequence&lt;{{StyleValue}}> for
6363
<var>property</var>, returning null on failure.
6464

6565
Issue(41): Need to add a section describing values that reference custom properties. Should StyleValue handle

0 commit comments

Comments
 (0)