diff --git a/datafusion/physical-plan/src/joins/hash_join.rs b/datafusion/physical-plan/src/joins/hash_join.rs index ef1f93b1cd0c..6e797342385b 100644 --- a/datafusion/physical-plan/src/joins/hash_join.rs +++ b/datafusion/physical-plan/src/joins/hash_join.rs @@ -1003,7 +1003,7 @@ pub(crate) fn build_equal_condition_join_indices( } else if let Some((_, index)) = hash_map.get(*hash_value, |(hash, _)| *hash_value == *hash) { - // otherwise -- checking build hashmap for precense of current hash_value + // otherwise -- checking build hashmap for presence of current hash_value Some(*index) } else { None