Fix note in reserved prefix error.

This commit is contained in:
Mara Bos 2021-06-14 12:25:59 +00:00 committed by lrh2000
parent c856e6fa53
commit ce43fc9404

View file

@ -515,7 +515,7 @@ impl<'a> StringReader<'a> {
" ".into(), " ".into(),
Applicability::MachineApplicable, Applicability::MachineApplicable,
); );
err.note("prefixed identifiers and string literals are reserved since Rust 2021"); err.note("prefixed identifiers and literals are reserved since Rust 2021");
err.emit(); err.emit();
} }