summaryrefslogtreecommitdiff
path: root/spec/ruby/library/weakref/weakref_alive_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/weakref/weakref_alive_spec.rb')
-rw-r--r--spec/ruby/library/weakref/weakref_alive_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/weakref/weakref_alive_spec.rb b/spec/ruby/library/weakref/weakref_alive_spec.rb
index 5bd7c3166b..173ea01485 100644
--- a/spec/ruby/library/weakref/weakref_alive_spec.rb
+++ b/spec/ruby/library/weakref/weakref_alive_spec.rb
@@ -8,7 +8,7 @@ describe "WeakRef#weakref_alive?" do
ref.weakref_alive?.should == true
end
- it "returns a falsey value if the object is no longer reachable" do
+ it "returns a falsy value if the object is no longer reachable" do
ref = WeakRefSpec.make_dead_weakref
[false, nil].should include(ref.weakref_alive?)
end