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

ruby-changes:38804

From: kou <ko1@a...>
Date: Sun, 14 Jun 2015 10:14:49 +0900 (JST)
Subject: [ruby-changes:38804] kou:r50885 (trunk): * lib/rexml/source.rb (REXML::IOSource#scan): Fix a typo in

kou	2015-06-14 10:14:38 +0900 (Sun, 14 Jun 2015)

  New Revision: 50885

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

  Log:
    * lib/rexml/source.rb (REXML::IOSource#scan): Fix a typo in
      document. [fix GH-934] [ci skip]
      Patch by Anton Davydov. Thanks!!!
    
        warrent
        warrant
            ?

  Modified files:
    trunk/ChangeLog
    trunk/lib/rexml/source.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 50884)
+++ ChangeLog	(revision 50885)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun Jun 14 10:13:55 2015  Kouhei Sutou  <kou@c...>
+
+	* lib/rexml/source.rb (REXML::IOSource#scan): Fix a typo in
+	  document. [fix GH-934]
+	  Patch by Anton Davydov. Thanks!!!
+
 Sun Jun 14 10:09:48 2015  Kouhei Sutou  <kou@c...>
 
 	* lib/rexml/attlistdecl.rb (REXML::AttlistDecl): Fix a typo in
Index: lib/rexml/source.rb
===================================================================
--- lib/rexml/source.rb	(revision 50884)
+++ lib/rexml/source.rb	(revision 50885)
@@ -185,7 +185,7 @@ module REXML https://github.com/ruby/ruby/blob/trunk/lib/rexml/source.rb#L185
       # You'll notice that this next section is very similar to the same
       # section in match(), but just a liiittle different.  This is
       # because it is a touch faster to do it this way with scan()
-      # than the way match() does it; enough faster to warrent duplicating
+      # than the way match() does it; enough faster to warrant duplicating
       # some code
       if rv.size == 0
         until @buffer =~ pattern or @source.nil?

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

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