From 2497a21737fd28cd30e867a3b522ec2dfc636899 Mon Sep 17 00:00:00 2001 From: T0mstone <39707032+T0mstone@users.noreply.github.com> Date: Sat, 10 Apr 2021 18:54:59 +0200 Subject: [PATCH] Fix Bug introduced in #67 (#68) --- core/editor/src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/editor/src/macros.rs b/core/editor/src/macros.rs index d87a58cb..884cf3a4 100644 --- a/core/editor/src/macros.rs +++ b/core/editor/src/macros.rs @@ -79,7 +79,7 @@ macro_rules! match_variant_name { (match ($e:expr) { $($v:ident),* $(,)? }) => { match $e { $( - $v { .. } => stringify!(v) + $v { .. } => stringify!($v) ),* } };