aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/wrap.rb
diff options
context:
space:
mode:
authorJohn Kelly <jkelly0@me.com>2012-12-20 00:24:49 -0800
committerJohn Kelly <jkelly0@me.com>2012-12-20 00:24:49 -0800
commit9f42f732a420ba77a5a2193cdc15ebb61ce2dda8 (patch)
treee0ea844e42d53ccdfc3d79ce8f6aa748e35c9637 /activesupport/lib/active_support/core_ext/array/wrap.rb
parent86c5cea9f414d34fd92adb064fde5ecc7b40c727 (diff)
downloadrails-9f42f732a420ba77a5a2193cdc15ebb61ce2dda8.tar.gz
rails-9f42f732a420ba77a5a2193cdc15ebb61ce2dda8.tar.bz2
rails-9f42f732a420ba77a5a2193cdc15ebb61ce2dda8.zip
Remove Reference to Ruby 1.8.7
Diffstat (limited to 'activesupport/lib/active_support/core_ext/array/wrap.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/array/wrap.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/wrap.rb b/activesupport/lib/active_support/core_ext/array/wrap.rb
index 05b09a4c7f..1245768870 100644
--- a/activesupport/lib/active_support/core_ext/array/wrap.rb
+++ b/activesupport/lib/active_support/core_ext/array/wrap.rb
@@ -29,8 +29,7 @@ class Array
#
# [*object]
#
- # which for +nil+ returns <tt>[nil]</tt> (Ruby 1.8.7) or <tt>[]</tt> (Ruby
- # 1.9), and calls to <tt>Array(object)</tt> otherwise.
+ # which for +nil+ returns <tt>[]</tt>, and calls to <tt>Array(object)</tt> otherwise.
#
# Thus, in this case the behavior may be different for +nil+, and the differences with
# <tt>Kernel#Array</tt> explained above apply to the rest of <tt>object</tt>s.