@@ -47,7 +47,7 @@ impl VTable for Binary {
4747 match child_idx {
4848 0 => ChildName :: from ( "lhs" ) ,
4949 1 => ChildName :: from ( "rhs" ) ,
50- _ => unreachable ! ( "BinaryExpr has only two children" ) ,
50+ _ => unreachable ! ( "Binary has only two children" ) ,
5151 }
5252 }
5353
@@ -249,7 +249,7 @@ impl ExprInstance<'_, Binary> {
249249 }
250250}
251251
252- /// Create a new [`BinaryExpr `] using the [`Eq`](crate::Operator::Eq) operator.
252+ /// Create a new [`Binary `] using the [`Eq`](crate::Operator::Eq) operator.
253253///
254254/// ## Example usage
255255///
@@ -273,7 +273,7 @@ pub fn eq(lhs: Expression, rhs: Expression) -> Expression {
273273 . vortex_expect ( "Failed to create Eq binary expression" )
274274}
275275
276- /// Create a new [`BinaryExpr `] using the [`NotEq`](crate::Operator::NotEq) operator.
276+ /// Create a new [`Binary `] using the [`NotEq`](crate::Operator::NotEq) operator.
277277///
278278/// ## Example usage
279279///
@@ -297,7 +297,7 @@ pub fn not_eq(lhs: Expression, rhs: Expression) -> Expression {
297297 . vortex_expect ( "Failed to create NotEq binary expression" )
298298}
299299
300- /// Create a new [`BinaryExpr `] using the [`Gte`](crate::Operator::Gte) operator.
300+ /// Create a new [`Binary `] using the [`Gte`](crate::Operator::Gte) operator.
301301///
302302/// ## Example usage
303303///
@@ -321,7 +321,7 @@ pub fn gt_eq(lhs: Expression, rhs: Expression) -> Expression {
321321 . vortex_expect ( "Failed to create Gte binary expression" )
322322}
323323
324- /// Create a new [`BinaryExpr `] using the [`Gt`](crate::Operator::Gt) operator.
324+ /// Create a new [`Binary `] using the [`Gt`](crate::Operator::Gt) operator.
325325///
326326/// ## Example usage
327327///
@@ -345,7 +345,7 @@ pub fn gt(lhs: Expression, rhs: Expression) -> Expression {
345345 . vortex_expect ( "Failed to create Gt binary expression" )
346346}
347347
348- /// Create a new [`BinaryExpr `] using the [`Lte`](crate::Operator::Lte) operator.
348+ /// Create a new [`Binary `] using the [`Lte`](crate::Operator::Lte) operator.
349349///
350350/// ## Example usage
351351///
@@ -369,7 +369,7 @@ pub fn lt_eq(lhs: Expression, rhs: Expression) -> Expression {
369369 . vortex_expect ( "Failed to create Lte binary expression" )
370370}
371371
372- /// Create a new [`BinaryExpr `] using the [`Lt`](crate::Operator::Lt) operator.
372+ /// Create a new [`Binary `] using the [`Lt`](crate::Operator::Lt) operator.
373373///
374374/// ## Example usage
375375///
@@ -393,7 +393,7 @@ pub fn lt(lhs: Expression, rhs: Expression) -> Expression {
393393 . vortex_expect ( "Failed to create Lt binary expression" )
394394}
395395
396- /// Create a new [`BinaryExpr `] using the [`Or`](crate::Operator::Or) operator.
396+ /// Create a new [`Binary `] using the [`Or`](crate::Operator::Or) operator.
397397///
398398/// ## Example usage
399399///
@@ -427,7 +427,7 @@ where
427427 Some ( iter. rfold ( first, |acc, elem| or ( elem, acc) ) )
428428}
429429
430- /// Create a new [`BinaryExpr `] using the [`And`](crate::Operator::And) operator.
430+ /// Create a new [`Binary `] using the [`And`](crate::Operator::And) operator.
431431///
432432/// ## Example usage
433433///
@@ -471,7 +471,7 @@ where
471471 iter. reduce ( and)
472472}
473473
474- /// Create a new [`BinaryExpr `] using the [`Add`](crate::Operator::Add) operator.
474+ /// Create a new [`Binary `] using the [`Add`](crate::Operator::Add) operator.
475475///
476476/// ## Example usage
477477///
0 commit comments