summaryrefslogtreecommitdiff
path: root/spec/ruby/core/range/minmax_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/range/minmax_spec.rb')
-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]