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

ruby-changes:19466

From: nagachika <ko1@a...>
Date: Wed, 11 May 2011 19:22:24 +0900 (JST)
Subject: [ruby-changes:19466] Ruby:r31506 (trunk): * lib/csv.rb: fix a typo.

nagachika	2011-05-11 19:22:16 +0900 (Wed, 11 May 2011)

  New Revision: 31506

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

  Log:
    * lib/csv.rb: fix a typo.
      * lib/logger.rb: ditto
      * lib/rss.rb: ditto
      * lib/webrick/httpauth/authenticator.rb: ditto

  Modified files:
    trunk/lib/csv.rb
    trunk/lib/logger.rb
    trunk/lib/rss.rb
    trunk/lib/webrick/httpauth/authenticator.rb

Index: lib/webrick/httpauth/authenticator.rb
===================================================================
--- lib/webrick/httpauth/authenticator.rb	(revision 31505)
+++ lib/webrick/httpauth/authenticator.rb	(revision 31506)
@@ -22,7 +22,7 @@
       AuthException     = HTTPStatus::Unauthorized
 
       ##
-      # Method of authentication, must be overriden by the including class
+      # Method of authentication, must be overridden by the including class
 
       AuthScheme        = nil
 
Index: lib/csv.rb
===================================================================
--- lib/csv.rb	(revision 31505)
+++ lib/csv.rb	(revision 31506)
@@ -1556,7 +1556,7 @@
   #
   # See CSV::DEFAULT_OPTIONS for the default settings.
   #
-  # Options cannot be overriden in the instance methods for performance reasons,
+  # Options cannot be overridden in the instance methods for performance reasons,
   # so be sure to set what you want here.
   #
   def initialize(data, options = Hash.new)
Index: lib/logger.rb
===================================================================
--- lib/logger.rb	(revision 31505)
+++ lib/logger.rb	(revision 31506)
@@ -607,7 +607,7 @@
       if FileTest.exist?(age_file)
         # try to avoid filename crash caused by Timestamp change.
         idx = 0
-        # .99 can be overriden; avoid too much file search with 'loop do'
+        # .99 can be overridden; avoid too much file search with 'loop do'
         while idx < 100
           idx += 1
           age_file = "#{@filename}.#{postfix}.#{idx}"
Index: lib/rss.rb
===================================================================
--- lib/rss.rb	(revision 31505)
+++ lib/rss.rb	(revision 31506)
@@ -35,7 +35,7 @@
 #
 # As you can see, the workhorse is RSS::Parser#parse, which takes the source of
 # the feed and a parameter that performs validation on the feed. We get back an
-# object that has all of the data from our feed, accessable through methods.
+# object that has all of the data from our feed, accessible through methods.
 # This example shows getting the title out of the channel element, and looping
 # through the list of items.
 #

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

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