Skip to content

Commit bd25507

Browse files
committed
Remove raw string literal quotes from error index descriptions
1 parent 74d5c70 commit bd25507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/error_index_generator/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fn register_all() -> Vec<(&'static str, Option<&'static str>)> {
3535
($($ecode:ident: $message:expr,)* ; $($code:ident,)*) => (
3636
$(
3737
{long_codes.extend([
38-
(stringify!($ecode), Some(stringify!($message))),
38+
(stringify!($ecode), Some($message)),
3939
].iter());}
4040
)*
4141
$(

0 commit comments

Comments
 (0)