about summary refs log tree commit diff
path: root/src/libsyntax/parse/common.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-09 08:46:35 +0000
committerbors <bors@rust-lang.org>2014-07-09 08:46:35 +0000
commitad3eda123a00b3ddf8897295ff26d97ba7c64d44 (patch)
tree0cb4cd8360a223b72c5ce0bc3e3701786a381bd4 /src/libsyntax/parse/common.rs
parent5716abe3f019ab7d9c8cdde9879332040191cf88 (diff)
parent69a0cdf49195d2bc042b44f75e309eb280bcc475 (diff)
downloadrust-ad3eda123a00b3ddf8897295ff26d97ba7c64d44.tar.gz
rust-ad3eda123a00b3ddf8897295ff26d97ba7c64d44.zip
auto merge of #15339 : cmr/rust/rewrite-lexer2, r=huonw
Mostly minor things that rebasing is becoming painful.
Diffstat (limited to 'src/libsyntax/parse/common.rs')
-rw-r--r--src/libsyntax/parse/common.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/common.rs b/src/libsyntax/parse/common.rs
index 3c3f0c7a820..3842170d677 100644
--- a/src/libsyntax/parse/common.rs
+++ b/src/libsyntax/parse/common.rs
@@ -12,8 +12,8 @@
 
 use parse::token;
 
-// SeqSep : a sequence separator (token)
-// and whether a trailing separator is allowed.
+/// SeqSep : a sequence separator (token)
+/// and whether a trailing separator is allowed.
 pub struct SeqSep {
     pub sep: Option<token::Token>,
     pub trailing_sep_allowed: bool