diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-12 02:33:45 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-12 02:33:45 +0000 |
commit | 6210fc9fe56ad176e07b3462381315775cca31cc (patch) | |
tree | 8ff0ef2d18b4bcd1dc0a192fdc55037aee50f128 /test/rake/test_rake_thread_pool.rb | |
parent | b9a34fd717d1e23ddb2f53cf52e1a655fd917591 (diff) |
fix a typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rake/test_rake_thread_pool.rb')
-rw-r--r-- | test/rake/test_rake_thread_pool.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |