summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/shared/exit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/shared/exit.rb')
-rw-r--r--spec/ruby/core/thread/shared/exit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/thread/shared/exit.rb b/spec/ruby/core/thread/shared/exit.rb
index f15da360fd..0c9198c538 100644
--- a/spec/ruby/core/thread/shared/exit.rb
+++ b/spec/ruby/core/thread/shared/exit.rb
@@ -112,7 +112,7 @@ describe :thread_exit, shared: true do
quarantine! do
- it "propogates inner exception to Thread.join if there is an outer ensure clause" do
+ it "propagates inner exception to Thread.join if there is an outer ensure clause" do
thread = ThreadSpecs.dying_thread_with_outer_ensure(@method) { }
lambda { thread.join }.should raise_error(RuntimeError, "In dying thread")
end