* 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:
zzak 2013-02-02 04:32:25 +00:00
Родитель 1d23123c46
Коммит 94839d4a80
2 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -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.