aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-28 09:17:08 +0100
committerAleksey Kladov <[email protected]>2018-08-28 09:17:08 +0100
commit363f466627db373fab23d1df94b7382223b8675a (patch)
treef22c779cf90096968488c7951c803f053473f11d /crates/libsyntax2/src
parent2fa90e736b026ee979d9eb59178dc1f792228250 (diff)
tone down on eq typed
Diffstat (limited to 'crates/libsyntax2/src')
-rw-r--r--crates/libsyntax2/src/parser_api.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/parser_api.rs b/crates/libsyntax2/src/parser_api.rs
index 10b9b64ac..70af474ae 100644
--- a/crates/libsyntax2/src/parser_api.rs
+++ b/crates/libsyntax2/src/parser_api.rs
@@ -155,7 +155,7 @@ impl<'t> Parser<'t> {
155 self.error(message); 155 self.error(message);
156 self.bump(); 156 self.bump();
157 m.complete(self, ERROR); 157 m.complete(self, ERROR);
158 } 158 };
159 } 159 }
160} 160}
161 161