From 6210fc9fe56ad176e07b3462381315775cca31cc Mon Sep 17 00:00:00 2001 From: kazu Date: Sun, 12 May 2013 02:33:45 +0000 Subject: [PATCH] fix a typo git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rake/test_rake_thread_pool.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rake/test_rake_thread_pool.rb b/test/rake/test_rake_thread_pool.rb index 90c8bf577a..cc8163a9e0 100644 --- a/test/rake/test_rake_thread_pool.rb +++ b/test/rake/test_rake_thread_pool.rb @@ -46,7 +46,7 @@ class TestRakeTestThreadPool < Rake::TestCase 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