Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: remzi <13716567376yh@gmail.com>
  • Loading branch information
HaoYang670 committed Mar 8, 2022
1 parent e40bc91 commit 05f4e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/compute/kernels/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ use num::{abs, clamp};
/// let expected: Int32Array = vec![Some(1), None, Some(4)].into();
/// assert_eq!(res.as_ref(), &expected);
///
/// // shift array 3 element tot he right
/// // shift array 3 element to the right
/// let res = shift(&a, 3).unwrap();
/// let expected: Int32Array = vec![None, None, None].into();
/// assert_eq!(res.as_ref(), &expected);
Expand Down

0 comments on commit 05f4e4a

Please sign in to comment.