summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-02 04:32:25 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-02 04:32:25 +0000
commit94839d4a80e62fdc8a60ddd4d4648228a9541fe5 (patch)
treec38d3b5748115becbdacf0016a1a9c8726b3f444
parent1d23123c46caafa039343a1da0b5e8fb25f49f93 (diff)
* 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
-rw-r--r--ChangeLog4
-rw-r--r--lib/net/pop.rb8
2 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index eeaba4e165..0ac2811c49 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index fd869b6985..600e093fa5 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -42,8 +42,6 @@ module Net
class POPBadResponse < POPError; end
#
- # = Net::POP3
- #
# == What is This Library?
#
# This library provides functionality for retrieving
@@ -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.