about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorAlex Burka <aburka@seas.upenn.edu>2016-03-18 19:04:43 -0400
committerAlex Burka <aburka@seas.upenn.edu>2016-03-24 01:42:23 -0400
commit861644f2af5421f5aa55d4e7fddfc8dba54bcb70 (patch)
tree06c9817cddb97291eeb781d1f82f8062ee621a03 /src/libsyntax/parse
parent9f899a66591c1a4bc68b51fc6d1f207d2d49a087 (diff)
downloadrust-861644f2af5421f5aa55d4e7fddfc8dba54bcb70.tar.gz
rust-861644f2af5421f5aa55d4e7fddfc8dba54bcb70.zip
address nits
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index deda0c59051..4782d3fb3b9 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -2076,8 +2076,8 @@ impl<'a> Parser<'a> {
         if end.is_none() && limits == RangeLimits::Closed {
             Err(self.span_fatal_help(self.span,
                                      "inclusive range with no end",
-                                     "currently, inclusive ranges must be bounded at the end \
-                                      (`...b` or `a...b`) -- see tracking issue #28237"))
+                                     "inclusive ranges must be bounded at the end \
+                                      (`...b` or `a...b`)"))
         } else {
             Ok(ExprKind::Range(start, end, limits))
         }
@@ -3016,7 +3016,8 @@ impl<'a> Parser<'a> {
                         this.parse_assoc_expr_with(op.precedence() + 1,
                             LhsExpr::NotYetParsed)
                 }),
-                // no operators are currently handled here
+                // We currently have no non-associative operators that are not handled above by
+                // the special cases. The code is here only for future convenience.
                 Fixity::None => self.with_res(
                     restrictions - Restrictions::RESTRICTION_STMT_EXPR,
                     |this| {