Skip to content

Commit

Permalink
RDoc remark about instance methods (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
BurdetteLamar committed Jul 1, 2020
1 parent 60f6f1c commit 76379bb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/csv.rb
Expand Up @@ -260,7 +260,14 @@
# - \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:
Expand Down

0 comments on commit 76379bb

Please sign in to comment.