diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-01-17 23:28:48 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-01-17 23:28:48 +0100 |
| commit | 9cc61497ed8a2336f33407d3262181e4ac3b46cb (patch) | |
| tree | aac75b57b0fffea64abcd23cbac4d27c875fee48 /src/operation.rs | |
| parent | 77cf9aa7535a1d9481f0bd3caeea26e2b85c5019 (diff) | |
add commonsense and expression_functions
Diffstat (limited to 'src/operation.rs')
| -rw-r--r-- | src/operation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operation.rs b/src/operation.rs index 1ee3d5c..a61ae1f 100644 --- a/src/operation.rs +++ b/src/operation.rs @@ -23,7 +23,7 @@ impl Operation { #[macro_export] macro_rules! operations { - ({$($x:expr => $y:expr), *}) => { + {$($x:expr => $y:expr), *} => { vec![$( Operation::new($x, Box::new($y)), )*] |