From 869a460f8a479aa5f401d6bf800a132db777fb3b Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 20:48:36 -0700 Subject: [PATCH] arrow-arith: fix 'occured' -> 'occurred' in arity.rs comments Two comments in arrow-arith/src/arity.rs (lines 459, 508) read 'no copying occured'. Fixed to 'occurred'. Comment-only change. Signed-off-by: SAY-5 --- arrow-arith/src/arity.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); }