lib/arrow/table.rb in red-arrow-13.0.0 vs lib/arrow/table.rb in red-arrow-14.0.0
- old
+ new
@@ -125,11 +125,11 @@
#
# @param schema [Arrow::Schema] The schema of the table.
# You can also specify schema as primitive Ruby objects.
# See {Arrow::Schema#initialize} for details.
#
- # @param arrays [::Array<Arrow::RecordBatch>] The data of the table.
+ # @param record_batches [::Array<Arrow::RecordBatch>] The data of the table.
#
# @example Create a table from schema and record batches
# count_field = Arrow::Field.new("count", :uint32)
# visible_field = Arrow::Field.new("visible", :boolean)
# schema = Arrow::Schema.new([count_field, visible_field])
@@ -143,10 +143,10 @@
#
# @param schema [Arrow::Schema] The schema of the table.
# You can also specify schema as primitive Ruby objects.
# See {Arrow::Schema#initialize} for details.
#
- # @param arrays [::Array<::Array>] The data of the table as primitive
+ # @param raw_records [::Array<::Array>] The data of the table as primitive
# Ruby objects.
#
# @example Create a table from schema and raw records
# schema = {
# count: :uint32,