fix semicolon

This commit is contained in:
Able 2024-11-15 04:30:34 -06:00
parent 53ed6426c6
commit e8a086297c

View file

@ -16,7 +16,7 @@ macro_rules! ensure_tonicity {
Some(x) => $check_fn(prev, x) && f(x, &xs[1..]), Some(x) => $check_fn(prev, x) && f(x, &xs[1..]),
None => true, None => true,
} }
}; }
Ok(Expr::Bool(f(first, rest))) Ok(Expr::Bool(f(first, rest)))
} }
}}; }};