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

ruby-changes:40792

From: hsbt <ko1@a...>
Date: Thu, 3 Dec 2015 15:39:30 +0900 (JST)
Subject: [ruby-changes:40792] hsbt:r52871 (trunk): * lib/scanf.rb: fixed double words typo.

hsbt	2015-12-03 15:39:26 +0900 (Thu, 03 Dec 2015)

  New Revision: 52871

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

  Log:
    * lib/scanf.rb: fixed double words typo.
      [ci skip][fix GH-1123] Patch by @jwworth

  Modified files:
    trunk/ChangeLog
    trunk/lib/scanf.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 52870)
+++ ChangeLog	(revision 52871)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Dec  3 15:39:21 2015  SHIBATA Hiroshi  <hsbt@r...>
+
+	* lib/scanf.rb: fixed double words typo.
+	  [ci skip][fix GH-1123] Patch by @jwworth
+
 Thu Dec  3 15:37:56 2015  SHIBATA Hiroshi  <hsbt@r...>
 
 	* test/ruby/test_mixed_unicode_escapes.rb: fixed typo.
Index: lib/scanf.rb
===================================================================
--- lib/scanf.rb	(revision 52870)
+++ lib/scanf.rb	(revision 52871)
@@ -610,7 +610,7 @@ class IO https://github.com/ruby/ruby/blob/trunk/lib/scanf.rb#L610
   #
   # See Scanf for details on creating a format string.
   #
-  # You will need to require 'scanf' to use use IO#scanf.
+  # You will need to require 'scanf' to use IO#scanf.
   def scanf(str,&b) #:yield: current_match
     return block_scanf(str,&b) if b
     return [] unless str.size > 0

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

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