Skip to content

Commit

Permalink
style(core): change macro indents
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Nov 1, 2023
1 parent 66bc882 commit debaa20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dar2oar_core/src/values/plugin_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
}
)+
};
}
Expand Down

0 comments on commit debaa20

Please sign in to comment.