summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/shared
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-21 00:40:56 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-21 01:19:55 +0900
commitfb8f011422c645ebe29e94c3fb2079af73d1d35f (patch)
tree93201efe561d1139cf7e89764bb7becfea23bcae /spec/ruby/core/integer/shared
parentad534a677a6df7437c934440b35affa88ce3648a (diff)
Fixed indefinite articles before "Integer" [ci skip]
Diffstat (limited to 'spec/ruby/core/integer/shared')
-rw-r--r--spec/ruby/core/integer/shared/equal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/integer/shared/equal.rb b/spec/ruby/core/integer/shared/equal.rb
index 03416b60f5..4a5a236ffa 100644
--- a/spec/ruby/core/integer/shared/equal.rb
+++ b/spec/ruby/core/integer/shared/equal.rb
@@ -11,7 +11,7 @@ describe :integer_equal, shared: true do
10.send(@method, bignum_value).should == false
end
- it "calls 'other == self' if the given argument is not a Integer" do
+ it "calls 'other == self' if the given argument is not an Integer" do
1.send(@method, '*').should == false
obj = mock('one other')