Skip to content

Commit

Permalink
fix: stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Feb 1, 2024
1 parent 788200f commit 6f238d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/feedback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ macro_rules! enum_to_string {
($input:ident,$($value:ident,)*) => {
match $input {
$(
Self::$value => $stringify($value),
Self::$value => stringify!($value),
)*
}
};
Expand Down

0 comments on commit 6f238d0

Please sign in to comment.