1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/csv] RDoc remark about instance methods (#152)

https://github.com/ruby/csv/commit/76379bbe62
This commit is contained in:
Burdette Lamar 2020-07-01 15:15:13 -05:00 committed by Nobuyoshi Nakada
parent a0bee2bbd6
commit 40c5023629
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
Notes: git 2020-07-20 03:35:33 +09:00

View file

@ -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: