ruby-changes:28601
From: kazu <ko1@a...>
Date: Sun, 12 May 2013 11:33:59 +0900 (JST)
Subject: [ruby-changes:28601] kazu:r40652 (trunk): fix a typo
kazu 2013-05-12 11:33:45 +0900 (Sun, 12 May 2013) New Revision: 40652 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40652 Log: fix a typo Modified files: trunk/test/rake/test_rake_thread_pool.rb Index: test/rake/test_rake_thread_pool.rb =================================================================== --- test/rake/test_rake_thread_pool.rb (revision 40651) +++ test/rake/test_rake_thread_pool.rb (revision 40652) @@ -46,7 +46,7 @@ class TestRakeTestThreadPool < Rake::Tes https://github.com/ruby/ruby/blob/trunk/test/rake/test_rake_thread_pool.rb#L46 pool = ThreadPool.new(2) a = 'a' b = 'b' - c = 5 # 5 throws an execption with 5.dup. It should be ignored + c = 5 # 5 throws an exception with 5.dup. It should be ignored pool.future(a,c){ |a_var,ignore| a_var.capitalize!; b.capitalize! } pool.join assert_equal 'a', a -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/