aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range/include_range.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2012-04-28 20:18:26 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2012-04-28 20:18:26 -0700
commit1a4e27ff96b3b7add1a4a43ca757ea8ee6c05c00 (patch)
tree03e64efa0e3a307c0f8f58eadc31fc01e26b1cd7 /activesupport/lib/active_support/core_ext/range/include_range.rb
parentad2c5ea2786817592014fae09934398173c1a7f9 (diff)
parent432a65fab2a6c7eb6ff77062e73f7627470f7da7 (diff)
downloadrails-1a4e27ff96b3b7add1a4a43ca757ea8ee6c05c00.tar.gz
rails-1a4e27ff96b3b7add1a4a43ca757ea8ee6c05c00.tar.bz2
rails-1a4e27ff96b3b7add1a4a43ca757ea8ee6c05c00.zip
Merge pull request #5996 from gazay/remove_excess_selfs
Active Support housekeeping and polish
Diffstat (limited to 'activesupport/lib/active_support/core_ext/range/include_range.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/range/include_range.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/range/include_range.rb b/activesupport/lib/active_support/core_ext/range/include_range.rb
index 684b7cbc4a..3af66aaf2f 100644
--- a/activesupport/lib/active_support/core_ext/range/include_range.rb
+++ b/activesupport/lib/active_support/core_ext/range/include_range.rb
@@ -5,7 +5,7 @@ class Range
# (1..5).include?(2..6) # => false
#
# The native Range#include? behavior is untouched.
- # ("a".."f").include?("c") # => true
+ # ('a'..'f').include?('c') # => true
# (5..9).include?(11) # => false
def include_with_range?(value)
if value.is_a?(::Range)