aboutsummaryrefslogtreecommitdiff
path: root/src/operation.rs
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-01-17 23:28:48 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2024-01-17 23:28:48 +0100
commit9cc61497ed8a2336f33407d3262181e4ac3b46cb (patch)
treeaac75b57b0fffea64abcd23cbac4d27c875fee48 /src/operation.rs
parent77cf9aa7535a1d9481f0bd3caeea26e2b85c5019 (diff)
add commonsense and expression_functions
Diffstat (limited to 'src/operation.rs')
-rw-r--r--src/operation.rs2
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)),
)*]