Use back ticks instead of single quotes around code

This commit is contained in:
Trevor Spiteri 2020-05-14 01:06:07 +02:00
parent 530a35f3f9
commit 2d0a949236
4 changed files with 4 additions and 4 deletions

View file

@ -54,7 +54,7 @@ fn rustc_unescape_error_to_string(err: unescape::EscapeError) -> &'static str {
"Unicode escape must not be empty"
}
EE::UnclosedUnicodeEscape => {
"Missing '}' to terminate the unicode escape"
"Missing `}` to terminate the unicode escape"
}
EE::LeadingUnderscoreUnicodeEscape => {
"Unicode escape code must not begin with an underscore"