diff options
| author | John Clements <clements@racket-lang.org> | 2013-04-19 10:44:41 -0700 |
|---|---|---|
| committer | John Clements <clements@racket-lang.org> | 2013-04-28 09:51:15 -0700 |
| commit | 2a74c58588e116d250fa9043ff4914cc68ef49e4 (patch) | |
| tree | e495e124fc660b3a1938d708ad8843e8b50b3b27 /src/libsyntax/parse | |
| parent | 915e76a974b732044390b38397eb628e76377def (diff) | |
| download | rust-2a74c58588e116d250fa9043ff4914cc68ef49e4.tar.gz rust-2a74c58588e116d250fa9043ff4914cc68ef49e4.zip | |
remove obsolete semicolon from list of suggestions
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
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() ) ); |
