mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/pop.rb: Fix rdoc title for Net::POP3
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1d23123c46
commit
94839d4a80
2 changed files with 7 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Feb 2 13:32:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
||||
|
||||
* lib/net/pop.rb: Fix rdoc title for Net::POP3
|
||||
|
||||
Sat Feb 2 13:00:11 2013 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* lib/gserver.rb (GServer#start): fix a timing issue. patch from
|
||||
|
|
|
@ -41,8 +41,6 @@ module Net
|
|||
# Unexpected response from the server.
|
||||
class POPBadResponse < POPError; end
|
||||
|
||||
#
|
||||
# = Net::POP3
|
||||
#
|
||||
# == What is This Library?
|
||||
#
|
||||
|
@ -717,9 +715,9 @@ module Net
|
|||
end # class POP3
|
||||
|
||||
# class aliases
|
||||
POP = POP3
|
||||
POPSession = POP3
|
||||
POP3Session = POP3
|
||||
POP = POP3 # :nodoc:
|
||||
POPSession = POP3 # :nodoc:
|
||||
POP3Session = POP3 # :nodoc:
|
||||
|
||||
#
|
||||
# This class is equivalent to POP3, except that it uses APOP authentication.
|
||||
|
|
Loading…
Add table
Reference in a new issue