summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/rake/test_rake_thread_pool.rb2
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