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

* lib/rss/xmlparser.rb: [DOC] Hide legacy constant from rdoc

Patch by Steve Klabnik [ruby-core:56708] [Bug #8799]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-08-19 17:02:40 +00:00
parent 77ca81e465
commit 22f812007a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Aug 20 02:01:10 2013 Zachary Scott <e@zzak.io>
* lib/rss/xmlparser.rb: [DOC] Hide legacy constant from rdoc
Patch by Steve Klabnik [ruby-core:56708] [Bug #8799]
Tue Aug 20 01:52:05 2013 Zachary Scott <e@zzak.io>
* ext/socket/unixserver.c: [DOC] Document #accept

View file

@ -20,7 +20,8 @@ end
module XML
class Parser
unless defined?(Error)
Error = ::XMLParserError
# This erorr is legacy, so we just set it to the new one
Error = ::XMLParserError # :nodoc:
end
end
end