Skip to content

Commit

Permalink
ARROW-8483: [Ruby] Removed irrelevant bits of documentation in Arrow:…
Browse files Browse the repository at this point in the history
…:Table

These were a copy from example with chunks few lines above:
https://github.com/apache/arrow/blob/master/ruby/red-arrow/lib/arrow/table.rb#L66

Closes apache#6957 from robertino/master

Authored-by: Robert Borkowski <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
  • Loading branch information
robertino authored and kszucs committed Apr 20, 2020
1 parent f42ba92 commit 5165e0d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions ruby/red-arrow/lib/arrow/table.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,6 @@ def load(path, options={})
# `Array`.
#
# @example Create a table from column name and values
# count_chunks = [
# Arrow::UInt32Array.new([0, 2]),
# Arrow::UInt32Array.new([nil, 4]),
# ]
# visible_chunks = [
# Arrow::BooleanArray.new([true]),
# Arrow::BooleanArray.new([nil, nil, false]),
# ]
# Arrow::Table.new("count" => [0, 2, nil, 4],
# "visible" => [true, nil, nil, false])
#
Expand Down

0 comments on commit 5165e0d

Please sign in to comment.