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

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


The following commit(s) were added to refs/heads/master by this push:
     new aa25f24ff6 MINOR: [C++][Docs] Fix comment typo in 
row_wise_conversion_example example (#13370)
aa25f24ff6 is described below

commit aa25f24ff67fdfce6d85c966b06947d9e133ccad
Author: Alexandre Crayssac <[email protected]>
AuthorDate: Sun Jun 12 15:38:09 2022 +0200

    MINOR: [C++][Docs] Fix comment typo in row_wise_conversion_example example 
(#13370)
    
    Authored-by: alexandreyc <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 cpp/examples/arrow/row_wise_conversion_example.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/examples/arrow/row_wise_conversion_example.cc 
b/cpp/examples/arrow/row_wise_conversion_example.cc
index 1af1c5547e..daa31a9dcb 100644
--- a/cpp/examples/arrow/row_wise_conversion_example.cc
+++ b/cpp/examples/arrow/row_wise_conversion_example.cc
@@ -97,7 +97,7 @@ arrow::Result<std::shared_ptr<arrow::Table>> 
VectorToColumnarTable(
   ARROW_RETURN_NOT_OK(id_builder.Finish(&id_array));
   std::shared_ptr<arrow::Array> components_array;
   ARROW_RETURN_NOT_OK(components_builder.Finish(&components_array));
-  // No need to invoke component_cost_builder.Finish because it is implied by
+  // No need to invoke component_item_cost_builder.Finish because it is 
implied by
   // the parent builder's Finish invocation.
   std::shared_ptr<arrow::Array> component_cost_array;
   ARROW_RETURN_NOT_OK(component_cost_builder.Finish(&component_cost_array));

Reply via email to