about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorAlfie John <alfiej@fastmail.fm>2014-11-16 04:12:43 +0000
committerAlfie John <alfiej@fastmail.fm>2014-11-16 04:12:43 +0000
commita8933973f9d33bbeef8c9c0be4a693a2f65cb97b (patch)
tree97ae4af6f083d12a74257edea0e49ee181b27471 /src/doc/reference.md
parent7e43f419cb98c9035d30e5cf0e0be7944dbc0371 (diff)
downloadrust-a8933973f9d33bbeef8c9c0be4a693a2f65cb97b.tar.gz
rust-a8933973f9d33bbeef8c9c0be4a693a2f65cb97b.zip
doc: make end comment consistent with start comment
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index d05705562d2..40c28fab02d 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -133,7 +133,7 @@ Some productions are defined by exclusion of particular Unicode characters:
 
 ```{.ebnf .gram}
 comment : block_comment | line_comment ;
-block_comment : "/*" block_comment_body * '*' + '/' ;
+block_comment : "/*" block_comment_body * "*/" ;
 block_comment_body : [block_comment | character] * ;
 line_comment : "//" non_eol * ;
 ```