aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/range_ext_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-05-26 16:27:05 +0530
committerVipul A M <vipulnsward@gmail.com>2013-05-26 16:27:05 +0530
commitd745d62616bb2b309c0a805387dae2d4e1814d3f (patch)
treedb2fad616c3e82265f33a181b1147a7a586f776c /activesupport/test/core_ext/range_ext_test.rb
parent432ffdb0739426122e216e0f7199ebc16f15de7e (diff)
downloadrails-d745d62616bb2b309c0a805387dae2d4e1814d3f.tar.gz
rails-d745d62616bb2b309c0a805387dae2d4e1814d3f.tar.bz2
rails-d745d62616bb2b309c0a805387dae2d4e1814d3f.zip
Fix some typo in method names, variables
Diffstat (limited to 'activesupport/test/core_ext/range_ext_test.rb')
-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 3e2355ae23..2f8723a074 100644
--- a/activesupport/test/core_ext/range_ext_test.rb
+++ b/activesupport/test/core_ext/range_ext_test.rb
@@ -54,7 +54,7 @@ class RangeTest < ActiveSupport::TestCase
assert((1...10) === (1...10))
end
- def test_should_compare_other_with_exlusive_end
+ def test_should_compare_other_with_exclusive_end
assert((1..10) === (1...10))
end