From 2a74c58588e116d250fa9043ff4914cc68ef49e4 Mon Sep 17 00:00:00 2001 From: John Clements Date: Fri, 19 Apr 2013 10:44:41 -0700 Subject: [PATCH] remove obsolete semicolon from list of suggestions --- src/libsyntax/parse/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index cffd51c2d57..9e5e88d1887 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -3341,7 +3341,7 @@ pub impl Parser { self.span_fatal( copy *self.span, fmt!( - "expected `;`, `,`, or '}' but found `%s`", + "expected `,`, or '}' but found `%s`", self.this_token_to_str() ) );