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

ruby-changes:41966

From: nagachika <ko1@a...>
Date: Wed, 9 Mar 2016 04:02:53 +0900 (JST)
Subject: [ruby-changes:41966] nagachika:r54040 (ruby_2_2): merge revision(s) 53299: [Backport #11870]

nagachika	2016-03-09 04:02:43 +0900 (Wed, 09 Mar 2016)

  New Revision: 54040

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

  Log:
    merge revision(s) 53299: [Backport #11870]
    
    * cont.c, doc, man: fix common misspelling.
      [ruby-core:72466] [Bug #11870]

  Modified directories:
    branches/ruby_2_2/
  Modified files:
    branches/ruby_2_2/ChangeLog
    branches/ruby_2_2/cont.c
    branches/ruby_2_2/doc/ChangeLog-1.8.0
    branches/ruby_2_2/doc/ChangeLog-1.9.3
    branches/ruby_2_2/doc/ChangeLog-YARV
    branches/ruby_2_2/doc/contributing.rdoc
    branches/ruby_2_2/ext/tk/lib/tkextlib/SUPPORT_STATUS
    branches/ruby_2_2/ext/tk/sample/demos-en/combo.rb
    branches/ruby_2_2/ext/tk/sample/demos-en/rolodex
    branches/ruby_2_2/ext/tk/sample/demos-jp/rolodex
    branches/ruby_2_2/ext/tk/sample/tkextlib/blt/pareto.rb
    branches/ruby_2_2/ext/tk/sample/tkextlib/tkHTML/page4/index.html
    branches/ruby_2_2/include/ruby/version.h
    branches/ruby_2_2/man/ruby.1
    branches/ruby_2_2/test/net/http/test_http.rb
    branches/ruby_2_2/test/openssl/test_config.rb
    branches/ruby_2_2/test/rexml/test_core.rb
    branches/ruby_2_2/test/webrick/test_httpserver.rb
    branches/ruby_2_2/version.h
Index: ruby_2_2/version.h
===================================================================
--- ruby_2_2/version.h	(revision 54039)
+++ ruby_2_2/version.h	(revision 54040)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/version.h#L1
 #define RUBY_VERSION "2.2.5"
 #define RUBY_RELEASE_DATE "2016-03-09"
-#define RUBY_PATCHLEVEL 244
+#define RUBY_PATCHLEVEL 245
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_2/test/net/http/test_http.rb
===================================================================
--- ruby_2_2/test/net/http/test_http.rb	(revision 54039)
+++ ruby_2_2/test/net/http/test_http.rb	(revision 54040)
@@ -139,12 +139,12 @@ class TestNetHTTP < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/ruby_2_2/test/net/http/test_http.rb#L139
 
   def test_proxy_port
     clean_http_proxy_env do
-      http = Net::HTTP.new 'exmaple', nil, 'proxy.example'
+      http = Net::HTTP.new 'example', nil, 'proxy.example'
       assert_equal 'proxy.example', http.proxy_address
       assert_equal 80, http.proxy_port
-      http = Net::HTTP.new 'exmaple', nil, 'proxy.example', 8000
+      http = Net::HTTP.new 'example', nil, 'proxy.example', 8000
       assert_equal 8000, http.proxy_port
-      http = Net::HTTP.new 'exmaple', nil
+      http = Net::HTTP.new 'example', nil
       assert_equal nil, http.proxy_port
     end
   end
Index: ruby_2_2/test/openssl/test_config.rb
===================================================================
--- ruby_2_2/test/openssl/test_config.rb	(revision 54039)
+++ ruby_2_2/test/openssl/test_config.rb	(revision 54040)
@@ -167,7 +167,7 @@ __EOC__ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/test/openssl/test_config.rb#L167
   end
 
   def test_value
-    # supress deprecation warnings
+    # suppress deprecation warnings
     OpenSSL::TestUtils.silent do
       assert_equal('CA_default', @it.value('ca', 'default_ca'))
       assert_equal(nil, @it.value('ca', 'no such key'))
Index: ruby_2_2/test/webrick/test_httpserver.rb
===================================================================
--- ruby_2_2/test/webrick/test_httpserver.rb	(revision 54039)
+++ ruby_2_2/test/webrick/test_httpserver.rb	(revision 54040)
@@ -359,7 +359,7 @@ class TestWEBrickHTTPServer < Test::Unit https://github.com/ruby/ruby/blob/trunk/ruby_2_2/test/webrick/test_httpserver.rb#L359
           http.request(req){|res| assert_equal("foo", res.body) }
         end
       rescue Timeout::Error
-        flunk('corrupted reponse')
+        flunk('corrupted response')
       end
     }
   end
Index: ruby_2_2/test/rexml/test_core.rb
===================================================================
--- ruby_2_2/test/rexml/test_core.rb	(revision 54039)
+++ ruby_2_2/test/rexml/test_core.rb	(revision 54040)
@@ -618,7 +618,7 @@ module REXMLTests https://github.com/ruby/ruby/blob/trunk/ruby_2_2/test/rexml/test_core.rb#L618
       File.open(fixture_path("documentation.xml")) do |f|
         Document.parse_stream( f, c )
       end
-      assert(c.ts, "Stream parsing apparantly didn't parse the whole file")
+      assert(c.ts, "Stream parsing apparently didn't parse the whole file")
       assert(c.te, "Stream parsing dropped end tag for documentation")
 
       Document.parse_stream("<a.b> <c/> </a.b>", c)
Index: ruby_2_2/cont.c
===================================================================
--- ruby_2_2/cont.c	(revision 54039)
+++ ruby_2_2/cont.c	(revision 54040)
@@ -137,7 +137,7 @@ struct rb_fiber_struct { https://github.com/ruby/ruby/blob/trunk/ruby_2_2/cont.c#L137
      * then this fiber can't "resume" any more after that.
      * You shouldn't mix "transfer" and "resume".
      */
-    int transfered;
+    int transferred;
 
 #if FIBER_USE_NATIVE
 #ifdef _WIN32
@@ -1486,7 +1486,7 @@ rb_fiber_resume(VALUE fibval, int argc, https://github.com/ruby/ruby/blob/trunk/ruby_2_2/cont.c#L1486
     if (fib->prev != 0 || fib->cont.type == ROOT_FIBER_CONTEXT) {
 	rb_raise(rb_eFiberError, "double resume");
     }
-    if (fib->transfered != 0) {
+    if (fib->transferred != 0) {
 	rb_raise(rb_eFiberError, "cannot resume transferred Fiber");
     }
 
@@ -1598,7 +1598,7 @@ rb_fiber_m_transfer(int argc, VALUE *arg https://github.com/ruby/ruby/blob/trunk/ruby_2_2/cont.c#L1598
 {
     rb_fiber_t *fib;
     GetFiberPtr(fibval, fib);
-    fib->transfered = 1;
+    fib->transferred = 1;
     return fiber_switch(fib, argc, argv, 0);
 }
 
Index: ruby_2_2/ext/tk/lib/tkextlib/SUPPORT_STATUS
===================================================================
--- ruby_2_2/ext/tk/lib/tkextlib/SUPPORT_STATUS	(revision 54039)
+++ ruby_2_2/ext/tk/lib/tkextlib/SUPPORT_STATUS	(revision 54040)
@@ -4,7 +4,7 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/lib/tkextlib/SUPPORT_STATUS#L4
   *** RELEASE_DATE of the libraries => see 'tkextlib/version.rb' ***
 
 The following list shows *CURRENT* status when this file was modified
-at last. If you want to add other Tcl/Tk extensions to the planed list
+at last. If you want to add other Tcl/Tk extensions to the planned list
 (or change its status position), please request them at the ruby-talk,
 ruby-list, or ruby-dev ML. Although we cannot promise to support your
 requests, we'll try to do.
Index: ruby_2_2/ext/tk/sample/demos-en/combo.rb
===================================================================
--- ruby_2_2/ext/tk/sample/demos-en/combo.rb	(revision 54039)
+++ ruby_2_2/ext/tk/sample/demos-en/combo.rb	(revision 54040)
@@ -71,7 +71,7 @@ australianCities = [ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/sample/demos-en/combo.rb#L71
 ]
 
 
-secondValue.value = 'unchangable'
+secondValue.value = 'unchangeable'
 ozCity.value = 'Sydney'
 
 Tk.pack(Ttk::Labelframe.new(frame, :text=>'Fully Editable'){|f|
Index: ruby_2_2/ext/tk/sample/demos-en/rolodex
===================================================================
--- ruby_2_2/ext/tk/sample/demos-en/rolodex	(revision 54039)
+++ ruby_2_2/ext/tk/sample/demos-en/rolodex	(revision 54040)
@@ -284,7 +284,7 @@ $helpTopics["context"] = <<EOF https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/sample/demos-en/rolodex#L284
 Unfortunately, this application doesn't support context-sensitive\
 help in the usual way, because when this demo was written Ruby/Tk\
 didn't have a grab mechanism and this is needed for context-sensitive\
-help. Instead, you can achive much the same effect by simply moving\
+help. Instead, you can achieve much the same effect by simply moving\
 the mouse over the window you're curious about and pressing the\
 Help or F1 keys. You can do this anytime.
 EOF
Index: ruby_2_2/ext/tk/sample/demos-jp/rolodex
===================================================================
--- ruby_2_2/ext/tk/sample/demos-jp/rolodex	(revision 54039)
+++ ruby_2_2/ext/tk/sample/demos-jp/rolodex	(revision 54040)
@@ -284,7 +284,7 @@ $helpTopics["context"] = <<EOF https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/sample/demos-jp/rolodex#L284
 Unfortunately, this application doesn't support context-sensitive\
 help in the usual way, because when this demo was written Ruby/Tk\
 didn't have a grab mechanism and this is needed for context-sensitive\
-help. Instead, you can achive much the same effect by simply moving\
+help. Instead, you can achieve much the same effect by simply moving\
 the mouse over the window you're curious about and pressing the\
 Help or F1 keys. You can do this anytime.
 EOF
Index: ruby_2_2/ext/tk/sample/tkextlib/blt/pareto.rb
===================================================================
--- ruby_2_2/ext/tk/sample/tkextlib/blt/pareto.rb	(revision 54039)
+++ ruby_2_2/ext/tk/sample/tkextlib/blt/pareto.rb	(revision 54040)
@@ -67,7 +67,7 @@ xdata.zip(ydata){|x, y| https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/sample/tkextlib/blt/pareto.rb#L67
                   :foreground=>'red4', :anchor=>:center, :yoffset=>-5)
 }
 
-# Display an auxillary y-axis for percentages.
+# Display an auxiliary y-axis for percentages.
 b.axis_configure('y2', :hide=>false, :min=>0.0, :max=>100.0,
                  :title=>'Percentage')
 
Index: ruby_2_2/ext/tk/sample/tkextlib/tkHTML/page4/index.html
===================================================================
--- ruby_2_2/ext/tk/sample/tkextlib/tkHTML/page4/index.html	(revision 54039)
+++ ruby_2_2/ext/tk/sample/tkextlib/tkHTML/page4/index.html	(revision 54040)
@@ -117,7 +117,7 @@ squelching curiosity." https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ext/tk/sample/tkextlib/tkHTML/page4/index.html#L117
 <B><FONT SIZE="+2">nmpg 1.1.3</FONT></B><BR>
 <SMALL><B><A HREF="mailto:narkos@l...">Joel Lindau</A> - January 29th 2000, 18:18 EST</B></SMALL>
 <DIV ALIGN="justify"><P>nmpg is a small command-driven frontend and network-jukebox for mpg123.</DIV>
-<P><B>Changes:</B> Bugfixes, better memory managment, a new .nmpgrc parser, and new options.
+<P><B>Changes:</B> Bugfixes, better memory management, a new .nmpgrc parser, and new options.
 <P><B>Urgency:</B> low
 <P ALIGN="right"><B>[ <A HREF="/news/2000/01/29/949187896.html">comments (0)</A> ]</B>
 </FONT></TD></TR></TABLE></TD></TR><TR><TD VALIGN="middle">
Index: ruby_2_2/man/ruby.1
===================================================================
--- ruby_2_2/man/ruby.1	(revision 54039)
+++ ruby_2_2/man/ruby.1	(revision 54040)
@@ -484,14 +484,14 @@ as below. https://github.com/ruby/ruby/blob/trunk/ruby_2_2/man/ruby.1#L484
 .Pp
 .Sh GC ENVIRONMENT
 The Ruby garbage collector (GC) tracks objects in fixed-sized slots,
-but each object may have auxillary memory allocations handled by the
+but each object may have auxiliary memory allocations handled by the
 malloc family of C standard library calls (
 .Xr malloc 3 ,
 .Xr calloc 3 ,
 and
 .Xr realloc 3 ) .
 In this documentatation, the "heap" refers to the Ruby object heap
-of fixed-sized slots, while "malloc" refers to auxillary
+of fixed-sized slots, while "malloc" refers to auxiliary
 allocations commonly referred to as the "process heap".
 Thus there are at least two possible ways to trigger GC:
 .Bl -hang -offset indent
Index: ruby_2_2/include/ruby/version.h
===================================================================
--- ruby_2_2/include/ruby/version.h	(revision 54039)
+++ ruby_2_2/include/ruby/version.h	(revision 54040)
@@ -13,7 +13,7 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/include/ruby/version.h#L13
 
 /*
  * This file contains only
- * - never-changable informations, and
+ * - never-changeable informations, and
  * - interfaces accessible from extension libraries.
  *
  * Never try to check RUBY_VERSION_CODE etc in extension libraries,
Index: ruby_2_2/ChangeLog
===================================================================
--- ruby_2_2/ChangeLog	(revision 54039)
+++ ruby_2_2/ChangeLog	(revision 54040)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ChangeLog#L1
+Wed Mar  9 03:53:37 2016  Tadashi Saito  <tadashi_saito@d...>
+
+	* compile.c, cont.c, doc, man: fix common misspelling.
+	  [ruby-core:72466] [Bug #11870]
+
 Wed Mar  9 03:51:48 2016  Eric Wong  <e@8...>
 
 	* ext/socket/init.c (rsock_init_sock): reject reserved FDs
Index: ruby_2_2/doc/ChangeLog-1.8.0
===================================================================
--- ruby_2_2/doc/ChangeLog-1.8.0	(revision 54039)
+++ ruby_2_2/doc/ChangeLog-1.8.0	(revision 54040)
@@ -1454,7 +1454,7 @@ Fri Jun 27 03:24:54 2003  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.8.0#L1454
 Thu Jun 26 21:34:49 2003  Nobuyoshi Nakada  <nobu.nokada@s...>
 
 	* class.c (class_instance_method_list): get rid of warning about
-	  arguement type mismatch, and inline method_list().
+	  argument type mismatch, and inline method_list().
 	  [ruby-core:01198]
 
 Wed Jun 25 14:40:33 2003  Hidetoshi NAGAI <nagai@a...>
@@ -3361,7 +3361,7 @@ Fri Apr 11 02:41:35 2003  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.8.0#L3361
 
 Thu Apr 10 21:12:19 2003  Minero Aoki  <aamine@l...>
 
-	* lib/net/pop.rb: Exception line was accidentaly removed.
+	* lib/net/pop.rb: Exception line was accidentally removed.
 	  [ruby-dev:19989]
 
 Thu Apr 10 18:42:13 2003  Tadayoshi Funaba  <tadf@d...>
@@ -5986,7 +5986,7 @@ Thu Nov  7 09:51:37 2002  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.8.0#L5986
 Wed Nov  6 16:57:06 2002  Yukihiro Matsumoto  <matz@r...>
 
 	* class.c (rb_define_method): do not set NOEX_CFUNC if klass is
-	  really a module, whose methods must be safe for reciever's type.
+	  really a module, whose methods must be safe for receiver's type.
 
 	* eval.c (rb_eval): nosuper should not be inherited unless the
 	  overwritten method is an undef placeholder.
Index: ruby_2_2/doc/ChangeLog-1.9.3
===================================================================
--- ruby_2_2/doc/ChangeLog-1.9.3	(revision 54039)
+++ ruby_2_2/doc/ChangeLog-1.9.3	(revision 54040)
@@ -3541,7 +3541,7 @@ Sun May 15 23:45:11 2011  KOSAKI Motohir https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L3541
 Sun May 15 22:26:39 2011  CHIKANAGA Tomoyuki  <nagachika00@g...>
 
 	* signal.c (rb_f_kill): accept '-SIGXXX' style signal with Symbol or
-	  implicit convertion with #to_str. [ruby-dev:43169] fixes #4362
+	  implicit conversion with #to_str. [ruby-dev:43169] fixes #4362
 	* test/ruby/test_signal.rb (test_signal_process_group): add a test
 	  for send signal to process group.
 
@@ -8041,7 +8041,7 @@ Sat Dec 25 17:33:55 2010  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L8041
 	  anonymous classes.
 
 	* lib/csv.rb (CSV#init_separators): use IO#gets with length
-	  parameter to get rid of wrong convertion.
+	  parameter to get rid of wrong conversion.
 
 	* lib/csv.rb (CSV::foreach, CSV#initialize): directly use encoding
 
@@ -8382,7 +8382,7 @@ Tue Dec 14 14:24:15 2010  NAKAMURA Usaku https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L8382
 	  to 'test_io' because the old one is meaningless and inconvenient.
 
 	* test/ruby/test_io.rb (test_binmode_after_closed): the temporary file
-	  maked by make_temfile is already closed.
+	  made by make_temfile is already closed.
 
 Tue Dec 14 13:52:19 2010  NAKAMURA Usaku  <usa@r...>
 
@@ -22363,7 +22363,7 @@ Tue Sep 29 22:19:36 2009  Tanaka Akira https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L22363
 
 Tue Sep 29 21:16:35 2009  NARUSE, Yui  <naruse@r...>
 
-	* io.c (rb_scan_open_args): add UTF8-MAC to no-convertion encoding.
+	* io.c (rb_scan_open_args): add UTF8-MAC to no-conversion encoding.
 
 Tue Sep 29 21:21:15 2009  Nobuyoshi Nakada  <nobu@r...>
 
@@ -33712,7 +33712,7 @@ Thu Dec 25 14:51:43 2008  NAKAMURA Usaku https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L33712
 Thu Dec 25 14:32:23 2008  Koichi Sasada  <ko1@a...>
 
 	* vm_insnhelper.c (vm_method_search): fix control flow bug.
-	  (commited at r20981)
+	  (committed at r20981)
 
 Thu Dec 25 13:28:20 2008  NAKAMURA Usaku  <usa@r...>
 
@@ -71774,7 +71774,7 @@ Wed Mar  1 17:13:37 2006  Yukihiro Matsu https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L71774
 
 Thu Mar  2 17:54:45 2006  Hirokazu Yamamoto  <ocean@m...>
 
-	* gc.c: commited magic for reducing RVALUE size on windows. (24->20byte)
+	* gc.c: committed magic for reducing RVALUE size on windows. (24->20byte)
 	  [ruby-core:7474]
 
 Thu Mar  2 14:12:26 2006  Tanaka Akira  <akr@m...>
@@ -73761,7 +73761,7 @@ Fri Oct 21 15:42:28 2005  Hirokazu Yamam https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L73761
 
 	* ext/socket/extconf.rb: BeOS is only one platform should call
 	  closesocket, so check __BEOS__ macro directly. (I was worried
-	  accidently HAVE_CLOSESOCKET is defined on windows again because
+	  accidentally HAVE_CLOSESOCKET is defined on windows again because
 	  it has it)
 
 	* ext/socket/{getaddrinfo.c,socket.c}: ditto.
@@ -73770,7 +73770,7 @@ Fri Oct 21 15:42:28 2005  Hirokazu Yamam https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L73770
 
 Fri Oct 21 15:23:23 2005  Hirokazu Yamamoto  <ocean@m...>
 
-	* bignum.c (bignew_1): convertion from `int' to `char' discards
+	* bignum.c (bignew_1): conversion from `int' to `char' discards
 	  upper bits, (ie. (char)0xff00 -> 0) so it's better to test if
 	  nonzero and set 0 or 1 instead of simply casting ... as a flag usage.
 	  (but I believe this won't cause actual bug in current implementation)
@@ -74937,7 +74937,7 @@ Mon Sep 12 20:32:00 2005  Hirokazu Yamam https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L74937
 
 Mon Sep 12 19:58:53 2005  Hirokazu Yamamoto  <ocean@m...>
 
-	* dln.c: avoid warning of const to non-const convertion.
+	* dln.c: avoid warning of const to non-const conversion.
 	  [ruby-dev:27041]
 
 	* eval.c, io.c, ruby.c: ditto.
@@ -83155,7 +83155,7 @@ Thu Aug 19 16:29:45 2004  Hidetoshi NAGA https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L83155
 
 	* ext/tk/lib/tk.rb: Fail to treat a hash value of 'font' option.
 
-	* ext/tk/lib/tk.rb: bindinfo cannot return '%' substiturion infomation.
+	* ext/tk/lib/tk.rb: bindinfo cannot return '%' substiturion information.
 
 	* ext/tk/lib/menu.rb: typo bug.
 
@@ -83584,7 +83584,7 @@ Wed Jul 14 18:05:21 2004  GOTOU Yuuzou https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L83584
 Wed Jul 14 12:20:05 2004  Hirokazu Yamamoto  <ocean@m...>
 
 	* util.c (ruby_strtod): should not convert string in the form of
-	  "-I.FE-X" which both "I" and "F" are ommitted. [ruby-dev:23883]
+	  "-I.FE-X" which both "I" and "F" are omitted. [ruby-dev:23883]
 
 	* test/ruby/test_float.rb (test_strtod): add test for bug fix.
 
@@ -84298,7 +84298,7 @@ Sat May 22 11:54:10 2004  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L84298
 
 Sat May 22 05:37:11 2004  Hidetoshi NAGAI  <nagai@a...>
 
-	* ext/tk/lib/remote-tk.rb: (NEW library) controll Tk interpreters
+	* ext/tk/lib/remote-tk.rb: (NEW library) control Tk interpreters
 	  on the other processes by Tcl/Tk's 'send' command
 
 Fri May 21 09:22:05 2004  Dave Thomas  <dave@p...>
@@ -85607,10 +85607,10 @@ Wed Mar 17 00:22:03 2004  Kazuo Saito  < https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L85607
 Tue Mar 16 11:14:17 2004  Hirokazu Yamamoto  <ocean@m...>
 
 	* dir.c (fnmatch_helper): File.fnmatch('\.', '.') should return true.
-	  (Rev1.112 lost compatiblity)
+	  (Rev1.112 lost compatibility)
 
 	* dir.c (fnmatch_helper): File.fnmatch('\/', '/', File::FNM_PATHNAME)
-	  should return true. (Rev1.112 lost compatiblity)
+	  should return true. (Rev1.112 lost compatibility)
 
 	* dir.c (fnmatch): File.fnmatch('**/.boo', '.foo/.boo',
 	  File::FNM_PATHNAME) should return false because of leading period.
@@ -86434,7 +86434,7 @@ Mon Feb 16 22:22:00 2004  Gavin Sinclair https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L86434
 
 Mon Feb 16 20:28:52 2004  Hirokazu Yamamoto  <ocean@m...>
 
-	* bcc32/Makefile.sub: show more warnings. (refering to mingw)
+	* bcc32/Makefile.sub: show more warnings. (referring to mingw)
 
 	* bcc32/setup.mak: ditto.
 
@@ -86492,7 +86492,7 @@ Mon Feb 16 12:29:10 2004  Nobuyoshi Naka https://github.com/ruby/ruby/blob/trunk/ruby_2_2/doc/ChangeLog-1.9.3#L86492
 Mon Feb 16 10:29:52 2004  Hirokazu Yamamoto  <ocean@m...>
 
 	* dir.c (CompareImpl): File.fnmatch and Dir.glob get better performance
-	  in Win32. This is achived by calling downcase() for single-byte
+	  in Win32. This is achieved by calling downcase() for single-byte
 	  characters. (CharLower() is slower than downcase())
 
 Mon Feb 16 02:14:29 2004  Hirokazu Yamamoto  <ocean@m...>
@@ -86561,7 +86 (... truncated)

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

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