diff --git a/dar2oar_core/src/values/plugin_value.rs b/dar2oar_core/src/values/plugin_value.rs index 8613163..173d2d1 100644 --- a/dar2oar_core/src/values/plugin_value.rs +++ b/dar2oar_core/src/values/plugin_value.rs @@ -32,12 +32,12 @@ impl From<&str> for FormID { macro_rules! from { ($($_type:ident),+ $(,)?) => { - $( - impl From<$_type> for FormID { - fn from(value: $_type) -> Self { - NumericLiteral::from(value).into() + $( + impl From<$_type> for FormID { + fn from(value: $_type) -> Self { + NumericLiteral::from(value).into() + } } - } )+ }; }