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

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 1e240c2064 MINOR: [C++][Compute] Fix kernel docstring typo (#47295)
1e240c2064 is described below

commit 1e240c2064d29bc60ca82d1e00509f80b44809eb
Author: Rossi Sun <zanmato1...@gmail.com>
AuthorDate: Sat Aug 9 14:14:07 2025 +0800

    MINOR: [C++][Compute] Fix kernel docstring typo (#47295)
    
    ### Rationale for this change
    
    Typo.
    
    ### What changes are included in this PR?
    
    `if` -> `is`
    
    ### Are these changes tested?
    
    No need.
    
    ### Are there any user-facing changes?
    
    None.
    
    Authored-by: Rossi Sun <zanmato1...@gmail.com>
    Signed-off-by: Sutou Kouhei <k...@clear-code.com>
---
 cpp/src/arrow/compute/kernel.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/src/arrow/compute/kernel.h b/cpp/src/arrow/compute/kernel.h
index cfb6265f12..b429c40ac3 100644
--- a/cpp/src/arrow/compute/kernel.h
+++ b/cpp/src/arrow/compute/kernel.h
@@ -364,7 +364,7 @@ class ARROW_EXPORT KernelSignature {
                                                OutputType out_type,
                                                bool is_varargs = false);
 
-  /// \brief Return true if the signature if compatible with the list of input
+  /// \brief Return true if the signature is compatible with the list of input
   /// value descriptors.
   bool MatchesInputs(const std::vector<TypeHolder>& types) const;
 

Reply via email to