Skip to content

Commit c953a6f

Browse files
nobueregon
authored andcommitted
Fixed indefinite articles before "Integer" [ci skip]
1 parent e6c868d commit c953a6f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/integer/shared/equal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
10.send(@method, bignum_value).should == false
1212
end
1313

14-
it "calls 'other == self' if the given argument is not a Integer" do
14+
it "calls 'other == self' if the given argument is not an Integer" do
1515
1.send(@method, '*').should == false
1616

1717
obj = mock('one other')

core/marshal/shared/load.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@
667667
end
668668
end
669669

670-
describe "for a Integer" do
670+
describe "for an Integer" do
671671
it "loads 0" do
672672
Marshal.send(@method, "\004\bi\000").should == 0
673673
Marshal.send(@method, "\004\bi\005").should == 0

core/rational/comparison_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
it_behaves_like :rational_cmp_rat, :<=>
55
end
66

7-
describe "Rational#<=> when passed a Integer object" do
7+
describe "Rational#<=> when passed an Integer object" do
88
it_behaves_like :rational_cmp_int, :<=>
99
end
1010

library/win32ole/win32ole_variable/value_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@var = ole_type.variables[0]
1010
end
1111

12-
it "returns a Integer" do
12+
it "returns an Integer" do
1313
# according to doc, this could return nil
1414
@var.value.should be_kind_of Integer
1515
end

0 commit comments

Comments
 (0)