Skip to content

Commit 180aaff

Browse files
committed
simplify <val> & <usage> tokens
1 parent ce7743c commit 180aaff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/CSS/Specification/Defs.rakumod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ grammar CSS::Specification::Defs {
55
proto rule proforma {*}
66

77
token val( $*EXPR, $*USAGE='' ) {
8-
<proforma> || <rx={$*EXPR}> || <usage($*USAGE)>
8+
<proforma> || <rx={$*EXPR}> || <usage>
99
}
1010

1111
token seen($opt) {
1212
<?{@*SEEN[$opt]++}>
1313
}
1414

15-
token usage($*USAGE) {
15+
token usage {
1616
<any-args>
1717
}
1818

0 commit comments

Comments
 (0)