about summary refs log tree commit diff
path: root/src/libsyntax/error_codes.rs
diff options
context:
space:
mode:
authorSamy Kacimi <samy.kacimi@protonmail.ch>2019-07-23 20:03:20 +0200
committerSamy Kacimi <samy.kacimi@protonmail.ch>2019-07-23 20:03:20 +0200
commit2083a123a50e9939bab639d9f06b9ef4cdc3d3ed (patch)
tree73018d2db1e67d5ab399f3c5095e2801b3e54022 /src/libsyntax/error_codes.rs
parent3ebca72a11869f946b31f900faffb75c2bb2473a (diff)
downloadrust-2083a123a50e9939bab639d9f06b9ef4cdc3d3ed.tar.gz
rust-2083a123a50e9939bab639d9f06b9ef4cdc3d3ed.zip
Normalize use of backticks in compiler messages for libsyntax/*
https://github.com/rust-lang/rust/issues/60532
Diffstat (limited to 'src/libsyntax/error_codes.rs')
-rw-r--r--src/libsyntax/error_codes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/error_codes.rs b/src/libsyntax/error_codes.rs
index e2d212eb721..029ce73498c 100644
--- a/src/libsyntax/error_codes.rs
+++ b/src/libsyntax/error_codes.rs
@@ -182,7 +182,7 @@ beta compilers will not comply.
 Example of erroneous code (on a stable compiler):
 
 ```ignore (depends on release channel)
-#![feature(non_ascii_idents)] // error: #![feature] may not be used on the
+#![feature(non_ascii_idents)] // error: `#![feature]` may not be used on the
                               //        stable release channel
 ```