From 9364e4cf6ed722490529ccee2c06f1d80e66b052 Mon Sep 17 00:00:00 2001 From: Rossi Sun Date: Wed, 11 Dec 2024 17:42:59 +0800 Subject: [PATCH] Update cpp/src/arrow/compute/api_vector.h Co-authored-by: Antoine Pitrou --- cpp/src/arrow/compute/api_vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/compute/api_vector.h b/cpp/src/arrow/compute/api_vector.h index a4f4af67d57c0..a735ddc2de296 100644 --- a/cpp/src/arrow/compute/api_vector.h +++ b/cpp/src/arrow/compute/api_vector.h @@ -265,7 +265,7 @@ class ARROW_EXPORT InversePermutationOptions : public FunctionOptions { static constexpr char const kTypeName[] = "InversePermutationOptions"; static InversePermutationOptions Defaults() { return InversePermutationOptions(); } - /// \brief The max value in the input indices to process. Any indices that are greater + /// \brief The max value in the input indices to allow. Any indices that are greater /// than this value will be ignored. If negative, this value will be set to the length /// of the input indices minus 1. int64_t max_index = -1;