This is an automated email from the ASF dual-hosted git repository.

jiayuliu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new b4481b8  fix (#1406)
b4481b8 is described below

commit b4481b8e7c1536aadd8af9900873e7d4f26af417
Author: Remzi Yang <[email protected]>
AuthorDate: Tue Mar 8 23:28:20 2022 +0800

    fix (#1406)
    
    Signed-off-by: remzi <[email protected]>
---
 arrow/src/compute/kernels/window.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow/src/compute/kernels/window.rs 
b/arrow/src/compute/kernels/window.rs
index b354b4a..3c7c7a9 100644
--- a/arrow/src/compute/kernels/window.rs
+++ b/arrow/src/compute/kernels/window.rs
@@ -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);

Reply via email to