aboutsummaryrefslogtreecommitdiffstats
path: root/lib/csv.rb
diff options
context:
space:
mode:
authorBurdette Lamar <BurdetteLamar@Yahoo.com>2020-07-01 15:15:13 -0500
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-07-20 02:32:54 +0900
commit40c50236291e39ceb2159439295137f194d0dbc2 (patch)
treefd90693a5a496b36ee4b3454188c1e07439cf778 /lib/csv.rb
parenta0bee2bbd6f85bb6c8de5d109eb60ab0ee39cdbb (diff)
downloadruby-40c50236291e39ceb2159439295137f194d0dbc2.tar.gz
[ruby/csv] RDoc remark about instance methods (#152)
https://github.com/ruby/csv/commit/76379bbe62
Diffstat (limited to 'lib/csv.rb')
-rw-r--r--lib/csv.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index 4acc9fd774..6830fd001f 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -260,7 +260,14 @@ using CSV::MatchP if CSV.const_defined?(:MatchP)
# - \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: