Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-37239: [Ruby] Updated documentation for ArrowTable#initialize to clarify argument details #37261

Merged
merged 1 commit into from
Aug 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions ruby/red-arrow/lib/arrow/table.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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<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)
Expand All @@ -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
Expand Down