aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/language
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-28 18:20:44 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-28 18:35:03 +0900
commit0a47896d201b91555d2216bc62125825b6b220a1 (patch)
tree39bb955b5bff9cc43e998095503ad39afc70d611 /spec/ruby/language
parent40e7aefebad412bde50fa9bdadcc8405f7605355 (diff)
downloadruby-0a47896d201b91555d2216bc62125825b6b220a1.tar.gz
s/an Bignum/a Bignum/ [ci skip]
Diffstat (limited to 'spec/ruby/language')
-rw-r--r--spec/ruby/language/numbers_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/numbers_spec.rb b/spec/ruby/language/numbers_spec.rb
index 2d8e19c40a..a8e023efb6 100644
--- a/spec/ruby/language/numbers_spec.rb
+++ b/spec/ruby/language/numbers_spec.rb
@@ -53,7 +53,7 @@ describe "A number literal" do
eval('0.0174532925199432957r').should == Rational(174532925199432957, 10000000000000000000)
end
- it "can be an bignum literal with trailing 'r' to represent a Rational" do
+ it "can be a bignum literal with trailing 'r' to represent a Rational" do
eval('1111111111111111111111111111111111111111111111r').should == Rational(1111111111111111111111111111111111111111111111, 1)
eval('-1111111111111111111111111111111111111111111111r').should == Rational(-1111111111111111111111111111111111111111111111, 1)
end