[前][次][番号順一覧][スレッド一覧]

ruby-changes:26965

From: zzak <ko1@a...>
Date: Sat, 2 Feb 2013 13:33:27 +0900 (JST)
Subject: [ruby-changes:26965] zzak:r39017 (trunk): * lib/net/pop.rb: Fix rdoc title for Net::POP3

zzak	2013-02-02 13:32:25 +0900 (Sat, 02 Feb 2013)

  New Revision: 39017

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39017

  Log:
    * lib/net/pop.rb: Fix rdoc title for Net::POP3

  Modified files:
    trunk/ChangeLog
    trunk/lib/net/pop.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 39016)
+++ ChangeLog	(revision 39017)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sat Feb  2 13:32:00 2013  Zachary Scott  <zachary@z...>
+
+	* lib/net/pop.rb: Fix rdoc title for Net::POP3
+
 Sat Feb  2 13:00:11 2013  Yusuke Endoh  <mame@t...>
 
 	* lib/gserver.rb (GServer#start): fix a timing issue.  patch from
Index: lib/net/pop.rb
===================================================================
--- lib/net/pop.rb	(revision 39016)
+++ lib/net/pop.rb	(revision 39017)
@@ -42,8 +42,6 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/pop.rb#L42
   class POPBadResponse < POPError; end
 
   #
-  # = Net::POP3
-  #
   # == What is This Library?
   #
   # This library provides functionality for retrieving
@@ -717,9 +715,9 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/pop.rb#L715
   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.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]