Skip to content

Commit

Permalink
Remove raw string literal quotes from error index descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ollie27 committed Sep 13, 2019
1 parent 74d5c70 commit bd25507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/error_index_generator/build.rs
Expand Up @@ -35,7 +35,7 @@ fn register_all() -> Vec<(&'static str, Option<&'static str>)> {
($($ecode:ident: $message:expr,)* ; $($code:ident,)*) => (
$(
{long_codes.extend([
(stringify!($ecode), Some(stringify!($message))),
(stringify!($ecode), Some($message)),
].iter());}
)*
$(
Expand Down

0 comments on commit bd25507

Please sign in to comment.