Skip to content

Commit 9514be5

Browse files
authored
[css-mixins-1] Make defaultValue member of FunctionParameter non-nullable (#13604)
This is already optional so there's no need to have it nullable as well
1 parent e4d8802 commit 9514be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-mixins-1/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2285,7 +2285,7 @@ interface CSSFunctionRule : CSSGroupingRule {
22852285
dictionary FunctionParameter {
22862286
required CSSOMString name;
22872287
required CSSOMString type;
2288-
CSSOMString? defaultValue;
2288+
CSSOMString defaultValue;
22892289
};
22902290
</pre>
22912291

0 commit comments

Comments
 (0)