You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2020/04/20 19:21:49 UTC

[arrow] 07/28: ARROW-8483: [Ruby] Removed irrelevant bits of documentation in Arrow::Table

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 5165e0d1ebb7e5e5aa18589915aa2a91ce076d59
Author: Robert Borkowski <rb...@o2.pl>
AuthorDate: Fri Apr 17 09:34:41 2020 +0900

    ARROW-8483: [Ruby] Removed irrelevant bits of documentation in Arrow::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 #6957 from robertino/master
    
    Authored-by: Robert Borkowski <rb...@o2.pl>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 ruby/red-arrow/lib/arrow/table.rb | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/ruby/red-arrow/lib/arrow/table.rb b/ruby/red-arrow/lib/arrow/table.rb
index fbf5d3c..2a727ef 100644
--- a/ruby/red-arrow/lib/arrow/table.rb
+++ b/ruby/red-arrow/lib/arrow/table.rb
@@ -81,14 +81,6 @@ module Arrow
     #     `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])
     #