summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/key_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/key_spec.rb')
-rw-r--r--spec/ruby/core/thread/key_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/thread/key_spec.rb b/spec/ruby/core/thread/key_spec.rb
index 6cdfc3ca7f..d82a21ab39 100644
--- a/spec/ruby/core/thread/key_spec.rb
+++ b/spec/ruby/core/thread/key_spec.rb
@@ -9,7 +9,7 @@ describe "Thread#key?" do
@th.join
end
- it "tests for existance of thread local variables using symbols or strings" do
+ it "tests for existence of thread local variables using symbols or strings" do
@th.key?(:oliver).should == true
@th.key?("oliver").should == true
@th.key?(:stanley).should == false