doc: make end comment consistent with start comment

This commit is contained in:
Alfie John 2014-11-16 04:12:43 +00:00
parent 7e43f419cb
commit a8933973f9

View file

@ -133,7 +133,7 @@ Some productions are defined by exclusion of particular Unicode characters:
```{.ebnf .gram} ```{.ebnf .gram}
comment : block_comment | line_comment ; comment : block_comment | line_comment ;
block_comment : "/*" block_comment_body * '*' + '/' ; block_comment : "/*" block_comment_body * "*/" ;
block_comment_body : [block_comment | character] * ; block_comment_body : [block_comment | character] * ;
line_comment : "//" non_eol * ; line_comment : "//" non_eol * ;
``` ```