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

ruby-changes:40943

From: hsbt <ko1@a...>
Date: Thu, 10 Dec 2015 14:14:03 +0900 (JST)
Subject: [ruby-changes:40943] hsbt:r53022 (trunk): * ext/tk/lib/multi-tk.rb: fix typos.

hsbt	2015-12-10 14:13:39 +0900 (Thu, 10 Dec 2015)

  New Revision: 53022

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

  Log:
    * ext/tk/lib/multi-tk.rb: fix typos.
      [Bug #11764][ruby-core:71800]

  Modified files:
    trunk/ChangeLog
    trunk/ext/tk/lib/multi-tk.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53021)
+++ ChangeLog	(revision 53022)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Dec 10 14:13:34 2015  SHIBATA Hiroshi  <hsbt@r...>
+
+	* ext/tk/lib/multi-tk.rb: fix typos.
+	  [Bug #11764][ruby-core:71800]
+
 Thu Dec 10 11:33:34 2015  Eric Wong  <e@8...>
 
 	* compile.c (iseq_compile_each): reduce needless rb_str_dup
Index: ext/tk/lib/multi-tk.rb
===================================================================
--- ext/tk/lib/multi-tk.rb	(revision 53021)
+++ ext/tk/lib/multi-tk.rb	(revision 53022)
@@ -1482,17 +1482,17 @@ class MultiTkIp https://github.com/ruby/ruby/blob/trunk/ext/tk/lib/multi-tk.rb#L1482
         begin
           @interp._eval("::safe::disallowTk #{slave}")
         rescue
-          warn("Waring: fail to call '::safe::disallowTk'") if $DEBUG
+          warn("Warning: fail to call '::safe::disallowTk'") if $DEBUG
         end
       else # toplevel path
         begin
           @interp._eval("::safe::tkDelete {} #{top} #{slave}")
         rescue
-          warn("Waring: fail to call '::safe::tkDelete'") if $DEBUG
+          warn("Warning: fail to call '::safe::tkDelete'") if $DEBUG
           begin
             @interp._eval("destroy #{top}")
           rescue
-            warn("Waring: fail to destroy toplevel") if $DEBUG
+            warn("Warning: fail to destroy toplevel") if $DEBUG
           end
         end
       end

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

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