diff --git a/crates/polars-plan/src/dsl/mod.rs b/crates/polars-plan/src/dsl/mod.rs index 9dd20bc813f5..5d814877a977 100644 --- a/crates/polars-plan/src/dsl/mod.rs +++ b/crates/polars-plan/src/dsl/mod.rs @@ -1126,27 +1126,27 @@ impl Expr { }) } - /// "and" operation. + /// Bitwise "and" operation. pub fn and>(self, expr: E) -> Self { binary_expr(self, Operator::And, expr.into()) } - /// "xor" operation. + /// Bitwise "xor" operation. pub fn xor>(self, expr: E) -> Self { binary_expr(self, Operator::Xor, expr.into()) } - /// "or" operation. + /// Bitwise "or" operation. pub fn or>(self, expr: E) -> Self { binary_expr(self, Operator::Or, expr.into()) } - /// "or" operation. + /// Logical "or" operation. pub fn logical_or>(self, expr: E) -> Self { binary_expr(self, Operator::LogicalOr, expr.into()) } - /// "or" operation. + /// Logical "and" operation. pub fn logical_and>(self, expr: E) -> Self { binary_expr(self, Operator::LogicalAnd, expr.into()) }