aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/allbits_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/allbits_spec.rb')
-rw-r--r--spec/ruby/core/integer/allbits_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/integer/allbits_spec.rb b/spec/ruby/core/integer/allbits_spec.rb
index 11acb52e1f..edce4b15e7 100644
--- a/spec/ruby/core/integer/allbits_spec.rb
+++ b/spec/ruby/core/integer/allbits_spec.rb
@@ -1,7 +1,7 @@
require_relative '../../spec_helper'
describe "Integer#allbits?" do
- it "returns true iff all the bits of the argument are set in the receiver" do
+ it "returns true if and only if all the bits of the argument are set in the receiver" do
42.allbits?(42).should == true
0b1010_1010.allbits?(0b1000_0010).should == true
0b1010_1010.allbits?(0b1000_0001).should == false