tamer: ir::xir::tree::ParseError::AttrNameExpected: Display typo fix

We do not want to put backticks around a token display.
main
Mike Gerwitz 2021-11-03 15:07:52 -04:00
parent adc939d779
commit 3ba478b09b
1 changed files with 1 additions and 1 deletions

View File

@ -875,7 +875,7 @@ impl Display for ParseError {
}
Self::AttrNameExpected(tok) => {
write!(f, "attribute name expected, found `{}`", tok)
write!(f, "attribute name expected, found {}", tok)
}
// TODO: Perhaps we should include the last-encountered Span.