From 3d3b83c2531e60bb96ee337c248fa2b9669b06c7 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 2 Nov 2023 06:11:51 -0400 Subject: [PATCH] Update datafusion/optimizer/src/push_down_filter.rs Co-authored-by: jakevin --- datafusion/optimizer/src/push_down_filter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/optimizer/src/push_down_filter.rs b/datafusion/optimizer/src/push_down_filter.rs index 114333e50372..63a276d9bf9f 100644 --- a/datafusion/optimizer/src/push_down_filter.rs +++ b/datafusion/optimizer/src/push_down_filter.rs @@ -89,7 +89,7 @@ use std::sync::Arc; /// ``` /// /// The `a > 10` is commutative with the `Aggregate` but `SUM(b) < 5` is not. -/// Therefoe it is possible to only push part of the expression, resulting in: +/// Therefore it is possible to only push part of the expression, resulting in: /// /// ```text /// Filter(SUM(b) < 5)