aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/integer/nobits_spec.rb
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2021-01-06 12:20:03 -0500
committerAaron Patterson <aaron.patterson@gmail.com>2021-01-19 12:06:45 -0800
commit9e0075a3d902aa5236bbfdc0ad0d3028a55dc17e (patch)
tree4c0a885269e1b6332027527fbbb9689ba045c256 /spec/ruby/core/integer/nobits_spec.rb
parenta8dc5156e183489c5121fb1759bda5d9406d9175 (diff)
downloadruby-9e0075a3d902aa5236bbfdc0ad0d3028a55dc17e.tar.gz
Replace "iff" with "if and only if"
iff means if and only if, but readers without that knowledge might assume this to be a spelling mistake. To me, this seems like exclusionary language that is unnecessary. Simply using "if and only if" instead should suffice.
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