diff --git a/arrow-arith/src/arity.rs b/arrow-arith/src/arity.rs index b9f7a82963c7..308dd8f9cd7b 100644 --- a/arrow-arith/src/arity.rs +++ b/arrow-arith/src/arity.rs @@ -456,7 +456,7 @@ mod tests { Some(vec![true, true, true, true, true].into()), ); - // unwrap here means that no copying occured + // unwrap here means that no copying occurred let r2 = binary_mut(a, &b, |a, b| a + b).unwrap(); assert_eq!(r1.unwrap(), r2.unwrap()); } @@ -505,7 +505,7 @@ mod tests { Some(vec![true, true, true, true, true].into()), ); - // unwrap here means that no copying occured + // unwrap here means that no copying occurred let r2 = try_binary_mut(a, &b, |a, b| Ok(a + b)).unwrap(); assert_eq!(r1.unwrap(), r2.unwrap()); }