Remove raw string literal quotes from error index descriptions

This commit is contained in:
Oliver Middleton 2019-09-13 11:37:29 +01:00
parent 74d5c70b17
commit bd25507f0e
1 changed files with 1 additions and 1 deletions

View File

@ -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());}
)*
$(