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