about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index b49db70c42d..f3b656b71bb 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -910,8 +910,8 @@ impl<'a> Parser<'a> {
             true
         }
         else {
-                self.expected_tokens.push(TokenType::Token(token::BinOp(token::Plus)));
-                false
+            self.expected_tokens.push(TokenType::Token(token::BinOp(token::Plus)));
+            false
         }
     }