Rollup merge of #72254 - ehuss:double-backtick, r=dtolnay

Remove redundant backtick in error message.

The value passed in already has backticks surrounding the text.
This commit is contained in:
Ralf Jung 2020-05-16 19:46:37 +02:00 committed by GitHub
commit 12112f4d7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -927,7 +927,7 @@ impl<'a> Parser<'a> {
return Ok(());
}
let sm = self.sess.source_map();
let msg = format!("expected `;`, found `{}`", super::token_descr(&self.token));
let msg = format!("expected `;`, found {}", super::token_descr(&self.token));
let appl = Applicability::MachineApplicable;
if self.token.span == DUMMY_SP || self.prev_token.span == DUMMY_SP {
// Likely inside a macro, can't provide meaningful suggestions.

View File

@ -1,4 +1,4 @@
error: expected `;`, found ``}``
error: expected `;`, found `}`
--> $DIR/issue-3036.rs:5:14
|
LL | let x = 3

View File

@ -1,4 +1,4 @@
error: expected `;`, found `keyword `let``
error: expected `;`, found keyword `let`
--> $DIR/recover-missing-semi.rs:2:22
|
LL | let _: usize = ()
@ -7,7 +7,7 @@ LL | let _: usize = ()
LL | let _ = 3;
| --- unexpected token
error: expected `;`, found `keyword `return``
error: expected `;`, found keyword `return`
--> $DIR/recover-missing-semi.rs:9:22
|
LL | let _: usize = ()