[前][次][番号順一覧][スレッド一覧]

ruby-changes:62312

From: Burdette <ko1@a...>
Date: Mon, 20 Jul 2020 03:35:59 +0900 (JST)
Subject: [ruby-changes:62312] 40c5023629 (master): [ruby/csv] RDoc remark about instance methods (#152)

https://git.ruby-lang.org/ruby.git/commit/?id=40c5023629

From 40c50236291e39ceb2159439295137f194d0dbc2 Mon Sep 17 00:00:00 2001
From: Burdette Lamar <BurdetteLamar@Y...>
Date: Wed, 1 Jul 2020 15:15:13 -0500
Subject: [ruby/csv] RDoc remark about instance methods (#152)

https://github.com/ruby/csv/commit/76379bbe62

diff --git a/lib/csv.rb b/lib/csv.rb
index 4acc9fd..6830fd0 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -260,7 +260,14 @@ using CSV::MatchP if CSV.const_defined?(:MatchP) https://github.com/ruby/ruby/blob/trunk/lib/csv.rb#L260
 # - \Method CSV.instance returns a new or cached \CSV object.
 # - \Method \CSV() also returns a new or cached \CSV object.
 #
-# === Delegated Methods
+# === Instance Methods
+#
+# \CSV has three groups of instance methods:
+# - Its own internally defined instance methods.
+# - Methods included by module Enumerable.
+# - Methods delegated to class IO. See below.
+#
+# ==== Delegated Methods
 #
 # For convenience, a CSV object will delegate to many methods in class IO.
 # (A few have wrapper "guard code" in \CSV.) You may call:
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]