about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-04-19 10:44:41 -0700
committerJohn Clements <clements@racket-lang.org>2013-04-28 09:51:15 -0700
commit2a74c58588e116d250fa9043ff4914cc68ef49e4 (patch)
treee495e124fc660b3a1938d708ad8843e8b50b3b27 /src/libsyntax
parent915e76a974b732044390b38397eb628e76377def (diff)
downloadrust-2a74c58588e116d250fa9043ff4914cc68ef49e4.tar.gz
rust-2a74c58588e116d250fa9043ff4914cc68ef49e4.zip
remove obsolete semicolon from list of suggestions
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
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()
                     )
                 );