aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/gc/disable_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/gc/disable_spec.rb')
-rw-r--r--spec/ruby/core/gc/disable_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/gc/disable_spec.rb b/spec/ruby/core/gc/disable_spec.rb
index b0221d8520..f89a9d2768 100644
--- a/spec/ruby/core/gc/disable_spec.rb
+++ b/spec/ruby/core/gc/disable_spec.rb
@@ -5,7 +5,7 @@ describe "GC.disable" do
GC.enable
end
- it "returns true iff the garbage collection was previously disabled" do
+ it "returns true if and only if the garbage collection was previously disabled" do
GC.enable
GC.disable.should == false
GC.disable.should == true