Skip to content
Merged
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
Fix typo and simplify transforms syntax
`wsp*` is already a prefix of `comma-wsp` and thus is useless here
  • Loading branch information
mclegrand authored Mar 11, 2020
commit 8590c4ffb57a252bb4592ac85e56bd2d7901faff
6 changes: 2 additions & 4 deletions css-transforms-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ Note: The syntax reflects implemented behavior in user agents and differs from t
<pre class='railroad'>
Stack:
Seq:
T: skewX
T: skewY
Star:
N: wsp
T: (
Expand Down Expand Up @@ -759,16 +759,14 @@ matrix
<dt id="svg-transforms">transforms</dt>
<dd><pre>
transform
| transform wsp* comma-wsp? transforms
| transform comma-wsp? transforms
</dd></pre>
<dd>
<pre class='railroad'>
Choice:
N: transform
Seq:
N: transform
Star:
N: wsp
Optional:
N: comma-wsp
N: transforms
Expand Down