diff --git a/ruby/red-arrow/lib/arrow/table.rb b/ruby/red-arrow/lib/arrow/table.rb index da79e94b18052..0ce5962fce6e9 100644 --- a/ruby/red-arrow/lib/arrow/table.rb +++ b/ruby/red-arrow/lib/arrow/table.rb @@ -127,7 +127,7 @@ def load(path, options={}) # You can also specify schema as primitive Ruby objects. # See {Arrow::Schema#initialize} for details. # - # @param arrays [::Array] The data of the table. + # @param record_batches [::Array] The data of the table. # # @example Create a table from schema and record batches # count_field = Arrow::Field.new("count", :uint32) @@ -145,7 +145,7 @@ def load(path, options={}) # 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