Skip to content

Commit

Permalink
Drop :nodoc: options from core classes that contains methods with d…
Browse files Browse the repository at this point in the history
…ocs (#322)

I found some methods are not included in RDoc output, and the `:nodoc:`
option should be the reason.

It seems like there is no reason to opt-out the methods.
7b79bec
added the option, but still not clear why we needed it.
  • Loading branch information
soutaro authored Nov 27, 2024
1 parent 7b8c3ca commit bc11345
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/csv/core_ext/array.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class Array # :nodoc:
class Array
# Equivalent to CSV::generate_line(self, options)
#
# ["CSV", "data"].to_csv
Expand Down
2 changes: 1 addition & 1 deletion lib/csv/core_ext/string.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class String # :nodoc:
class String
# Equivalent to CSV::parse_line(self, options)
#
# "CSV,data".parse_csv
Expand Down

0 comments on commit bc11345

Please sign in to comment.