aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-11-29 05:57:04 -0800
committerYves Senn <yves.senn@gmail.com>2013-11-29 05:57:04 -0800
commit450b6c75bbc6d07dd755530e282fdad17f504d12 (patch)
treefeb0ee60268bb1175c51a9f488db8f80ee8f292f
parent131cadf3b5a02684df7707c029f0e23a3a83f8f1 (diff)
parente6bccef3d0a75e0ab92b7bb5285d19c2c23bcae4 (diff)
downloadrails-450b6c75bbc6d07dd755530e282fdad17f504d12.tar.gz
rails-450b6c75bbc6d07dd755530e282fdad17f504d12.tar.bz2
rails-450b6c75bbc6d07dd755530e282fdad17f504d12.zip
Merge pull request #13102 from akshay-vishnoi/typo
Typo fix
-rw-r--r--activesupport/test/core_ext/range_ext_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/range_ext_test.rb b/activesupport/test/core_ext/range_ext_test.rb
index 854b0a38bd..6d6afc85c4 100644
--- a/activesupport/test/core_ext/range_ext_test.rb
+++ b/activesupport/test/core_ext/range_ext_test.rb
@@ -42,7 +42,7 @@ class RangeTest < ActiveSupport::TestCase
assert((1...10).include?(1...10))
end
- def test_should_include_other_with_exlusive_end
+ def test_should_include_other_with_exclusive_end
assert((1..10).include?(1...10))
end