Skip to content

Commit

Permalink
Add EBNF for multiline-comment to grammar docs (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolpheyn authored and kvark committed Sep 10, 2020
1 parent 7eee3ad commit 1ae778f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/grammar.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RON = [extensions], ws, value, ws;
```ebnf
ws = { ws_single, comment };
ws_single = "\n" | "\t" | "\r" | " ";
comment = ["//", { no_newline }, "\n"];
comment = ["//", { no_newline }, "\n"] | ["/*", { ? any character ? }, "*/"];
```

## Commas
Expand Down

0 comments on commit 1ae778f

Please sign in to comment.