Skip to content

Commit 869a460

Browse files
committed
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 <SAY-5@users.noreply.github.com>
1 parent 72b4576 commit 869a460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arrow-arith/src/arity.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ mod tests {
456456
Some(vec![true, true, true, true, true].into()),
457457
);
458458

459-
// unwrap here means that no copying occured
459+
// unwrap here means that no copying occurred
460460
let r2 = binary_mut(a, &b, |a, b| a + b).unwrap();
461461
assert_eq!(r1.unwrap(), r2.unwrap());
462462
}
@@ -505,7 +505,7 @@ mod tests {
505505
Some(vec![true, true, true, true, true].into()),
506506
);
507507

508-
// unwrap here means that no copying occured
508+
// unwrap here means that no copying occurred
509509
let r2 = try_binary_mut(a, &b, |a, b| Ok(a + b)).unwrap();
510510
assert_eq!(r1.unwrap(), r2.unwrap());
511511
}

0 commit comments

Comments
 (0)