aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorBrian Morearty <brian@morearty.org>2013-05-01 04:51:59 -0700
committerBrian Morearty <brian@morearty.org>2013-05-01 04:51:59 -0700
commit62c62bc360bf1ce3db0a11be47a974fcc0777362 (patch)
treefa6ab059c6910dfcb9ee010f6f80997c4ef8bf7b /guides
parentd7da403dde3a037a014741420bb7c6e7c7521a48 (diff)
downloadrails-62c62bc360bf1ce3db0a11be47a974fcc0777362.tar.gz
rails-62c62bc360bf1ce3db0a11be47a974fcc0777362.tar.bz2
rails-62c62bc360bf1ce3db0a11be47a974fcc0777362.zip
Revert the guide after removing varargs from `in?`.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_support_core_extensions.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 54f4b79b3b..6daad33dea 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -476,12 +476,11 @@ NOTE: Defined in `active_support/core_ext/kernel/reporting.rb`.
### `in?`
-The predicate `in?` tests if an object is included in another object or a list of objects. An `ArgumentError` exception will be raised if a single argument is passed and it does not respond to `include?`.
+The predicate `in?` tests if an object is included in another object. An `ArgumentError` exception will be raised if the argument passed does not respond to `include?`.
Examples of `in?`:
```ruby
-1.in?(1,2) # => true
1.in?([1,2]) # => true
"lo".in?("hello") # => true
25.in?(30..50) # => false