summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-21 10:54:24 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-21 10:54:24 +0900
commit63849a1cd98c7ae3a7d6af3f69814f01dfae25ea (patch)
treed3a019abf0d2ca055e1fed74b17ebe081ffa17f0 /spec/ruby
parent5253b9579a129f66a768dae24bd50a95bab02841 (diff)
Fix misspellings [ci skip]
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/core/range/minmax_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/range/minmax_spec.rb b/spec/ruby/core/range/minmax_spec.rb
index 505842e979..fa0637ac56 100644
--- a/spec/ruby/core/range/minmax_spec.rb
+++ b/spec/ruby/core/range/minmax_spec.rb
@@ -46,7 +46,7 @@ describe 'Range#minmax' do
end
end
- it 'should return begining of range if beginning and end are equal without iterating the range' do
+ it 'should return beginning of range if beginning and end are equal without iterating the range' do
@x.should_not_receive(:succ)
(@x..@x).minmax.should == [@x, @x]