From 40c50236291e39ceb2159439295137f194d0dbc2 Mon Sep 17 00:00:00 2001 From: Burdette Lamar Date: Wed, 1 Jul 2020 15:15:13 -0500 Subject: [PATCH] [ruby/csv] RDoc remark about instance methods (#152) https://github.com/ruby/csv/commit/76379bbe62 --- lib/csv.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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: