diff options
author | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-03-04 19:52:30 +0000 |
---|---|---|
committer | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-03-04 19:52:30 +0000 |
commit | e9d6c6716f534e7d211bb88af6fb1f46d9e49bc5 (patch) | |
tree | 7d8e07d636360c99ed3fa8ee351d10501e9dc7d4 /lib | |
parent | f01836cb3f8737fdccce08a5b815c552351f922b (diff) | |
download | ruby-e9d6c6716f534e7d211bb88af6fb1f46d9e49bc5.tar.gz |
nodoc OptParse
* lib/optparse.rb: [DOC] nodoc OptParse, introduced with r46126,
to avoid leaking of its documentation (OptionParser's docs) into
the class documentation of Object. [ruby-core:79909] [Bug #13281]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/optparse.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb index afeff80740..d887e2f98d 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -2151,4 +2151,5 @@ end # ARGV is arguable by OptionParser ARGV.extend(OptionParser::Arguable) -OptParse = OptionParser +# An alias for OptionParser. +OptParse = OptionParser # :nodoc: |