Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[various] Replace optional group with implicitly optional comma
  • Loading branch information
cdoublev committed Feb 21, 2023
commit c0c43d3a0cb24cd541f519e0ba60928107c4de4d
2 changes: 1 addition & 1 deletion css-conditional-values-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ to different values based on certain conditions.

<pre class="prod def">

<<if()>> = if( <<condition>>, <<consequent>> [, <<antecedent>>]?)
<<if()>> = if( <<condition>>, <<consequent>>, <<antecedent>>? )
<dfn>&lt;consequent></dfn> = <<declaration-value>>
<dfn>&lt;antecedent></dfn> = <<declaration-value>>
</pre>
Expand Down
2 changes: 1 addition & 1 deletion css-easing-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ The meaning of each value is as follows:
</figcaption>
</figure>

: <dfn function lt="steps()">steps(&lt;integer&gt;[, &lt;step-position&gt; ]?)</dfn>
: <dfn function lt="steps()">steps(&lt;integer&gt;, &lt;step-position&gt;?)</dfn>
:: The first parameter specifies the number of intervals in the function.
It must be a positive integer greater than 0
unless the second parameter is <a value for="steps()">jump-none</a>
Expand Down
2 changes: 1 addition & 1 deletion css-easing-2/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ The meaning of each value is as follows:
</figcaption>
</figure>

: <dfn function lt="steps()">steps(&lt;integer&gt;[, &lt;step-position&gt; ]?)</dfn>
: <dfn function lt="steps()">steps(&lt;integer&gt;, &lt;step-position&gt;?)</dfn>
:: The first parameter specifies the number of intervals in the function.
It must be a positive integer greater than 0
unless the second parameter is <a value for="steps()">jump-none</a>
Expand Down
2 changes: 1 addition & 1 deletion css-egg-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ The <<gradient>> syntax is extended to accept <<double-rainbow()>> in addition t

<pre>
<dfn>double-rainbow()</dfn> = double-rainbow(
<<position>> [, [ <<extent>> | <<length-percentage [0,∞]>>]]?
<<position>> , [ <<extent>> | <<length-percentage [0,∞]>> ]?
)
<dfn noexport><<extent>></dfn> = ''closest-corner'' | ''closest-side'' | ''farthest-corner'' | ''farthest-side''
</pre>
Expand Down