From 31b60f3a2319cc628fa8c692d441f94fb32322fe Mon Sep 17 00:00:00 2001 From: rvernica Date: Tue, 27 Jul 2021 16:47:15 +0200 Subject: [PATCH] ARROW-13455 [C++][Docs] Typo in RecordBatch::SetColumn Fix typo in SetColumn docs Closes #10810 from rvernica/patch-3 Authored-by: rvernica Signed-off-by: Antoine Pitrou --- cpp/src/arrow/record_batch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/record_batch.h b/cpp/src/arrow/record_batch.h index 96683bfade8db..92ffa8b87fbff 100644 --- a/cpp/src/arrow/record_batch.h +++ b/cpp/src/arrow/record_batch.h @@ -129,7 +129,7 @@ class ARROW_EXPORT RecordBatch { virtual Result> AddColumn( int i, std::string field_name, const std::shared_ptr& column) const; - /// \brief Replace a column in the table, producing a new Table + /// \brief Replace a column in the record batch, producing a new RecordBatch virtual Result> SetColumn( int i, const std::shared_ptr& field, const std::shared_ptr& column) const = 0;