summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.