diff --git a/src/frontend/src/expr/utils.rs b/src/frontend/src/expr/utils.rs index 91452f76caa4b..8ab2ae0e16d7f 100644 --- a/src/frontend/src/expr/utils.rs +++ b/src/frontend/src/expr/utils.rs @@ -33,7 +33,7 @@ fn split_expr_by(expr: ExprImpl, op: ExprType, rets: &mut Vec) { } } -/// Merge the given expressions by the a logical operation. +/// Merge the given expressions by the logical operation. /// /// The `op` must be commutative and associative, typically `And` or `Or`. pub(super) fn merge_expr_by_logical(exprs: I, op: ExprType, identity_elem: ExprImpl) -> ExprImpl