We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2a7df commit 8803b54Copy full SHA for 8803b54
design/mvp/WIT.md
@@ -568,7 +568,6 @@ The current structure of tokens are:
568
569
```ebnf
570
token ::= whitespace
571
- | comment
572
| operator
573
| keyword
574
| identifier
@@ -579,11 +578,11 @@ here.
579
578
580
### Whitespace
581
582
-A `whitespace` token in `wit` is a space, a newline, a carriage return, or a
583
-tab character:
+A `whitespace` token in `wit` is a space, a newline, a carriage return, a
+tab character, or a comment:
584
585
586
-whitespace ::= ' ' | '\n' | '\r' | '\t'
+whitespace ::= ' ' | '\n' | '\r' | '\t' | comment
587
```
588
589
### Comments
0 commit comments