fix single-line-comment

This commit is contained in:
Kat Marchán 2020-12-18 12:55:00 -08:00
parent 6617e2ad47
commit 1b9d878885
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 1 deletions

View File

@ -338,6 +338,6 @@ bom := '\u{FFEF}'
unicode-space := See Table (All White_Space unicode characters which are not `newline`)
single-line-comment := '//' ('\r' [^\n] | [^\r\n])* newline
single-line-comment := '//' ^newline+ newline
multi-line-comment := '/*' ('*' [^\/] | [^*])* '*/'
```