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

ruby-changes:40791

From: hsbt <ko1@a...>
Date: Thu, 3 Dec 2015 15:38:10 +0900 (JST)
Subject: [ruby-changes:40791] hsbt:r52870 (trunk): * test/ruby/test_mixed_unicode_escapes.rb: fixed typo.

hsbt	2015-12-03 15:38:01 +0900 (Thu, 03 Dec 2015)

  New Revision: 52870

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

  Log:
    * test/ruby/test_mixed_unicode_escapes.rb: fixed typo.
      [fix GH-1122] Patch by @davydovanton
    * test/ruby/test_object.rb: ditto.
    * test/socket/test_tcp.rb: ditto.

  Modified files:
    trunk/ChangeLog
    trunk/test/ruby/test_mixed_unicode_escapes.rb
    trunk/test/ruby/test_object.rb
    trunk/test/socket/test_tcp.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 52869)
+++ ChangeLog	(revision 52870)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Dec  3 15:37:56 2015  SHIBATA Hiroshi  <hsbt@r...>
+
+	* test/ruby/test_mixed_unicode_escapes.rb: fixed typo.
+	  [fix GH-1122] Patch by @davydovanton
+	* test/ruby/test_object.rb: ditto.
+	* test/socket/test_tcp.rb: ditto.
+
 Thu Dec  3 15:33:08 2015  Nobuyoshi Nakada  <nobu@r...>
 
 	* sprintf.c (rb_str_format): fix wrong shifting position in
Index: test/ruby/test_object.rb
===================================================================
--- test/ruby/test_object.rb	(revision 52869)
+++ test/ruby/test_object.rb	(revision 52870)
@@ -244,7 +244,7 @@ class TestObject < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_object.rb#L244
       assert_equal(:foo, o.remove_instance_variable(:@foo),
                    "#{desc} iv removal returns original value")
       assert_not_send([o, :instance_variable_defined?, :@foo],
-                      "#{desc} iv removed succesfully")
+                      "#{desc} iv removed successfully")
       e = assert_raise(NameError, "#{desc} iv removal raises after removal") do
         o.remove_instance_variable(:@foo)
       end
Index: test/ruby/test_mixed_unicode_escapes.rb
===================================================================
--- test/ruby/test_mixed_unicode_escapes.rb	(revision 52869)
+++ test/ruby/test_mixed_unicode_escapes.rb	(revision 52870)
@@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/test/ruby/test_mixed_unicode_escapes.rb#L1
 # -*- coding: cp932 -*-
-# This test is in a differnt file than TestUnicodeEscapes
+# This test is in a different file than TestUnicodeEscapes
 # So that we can have a different coding comment above
 
 require 'test/unit'
Index: test/socket/test_tcp.rb
===================================================================
--- test/socket/test_tcp.rb	(revision 52869)
+++ test/socket/test_tcp.rb	(revision 52870)
@@ -11,7 +11,7 @@ class TestSocket_TCPSocket < Test::Unit: https://github.com/ruby/ruby/blob/trunk/test/socket/test_tcp.rb#L11
   def test_initialize_failure
     # These addresses are chosen from TEST-NET-1, TEST-NET-2, and TEST-NET-3.
     # [RFC 5737]
-    # They are choosen because probably they are not used as a host address.
+    # They are chosen because probably they are not used as a host address.
     # Anyway the addresses are used for bind() and should be failed.
     # So no packets should be generated.
     test_ip_addresses = [

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

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