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:
parent
a0bee2bbd6
commit
40c5023629
Notes:
git
2020-07-20 03:35:33 +09:00
1 changed files with 8 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue