aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2019-07-15 12:50:52 -0400
committerGitHub <noreply@github.com>2019-07-15 12:50:52 -0400
commit83c6ea3a250361b3fc91df0a8277ee1576624ffe (patch)
treed21d43bbddcf5199f803ec295de15a90bdaf0f43 /guides
parent88b91299f3fc5b912e10323ed0ad18c87c7584e5 (diff)
parent40b75cbc0b6d02c17e4f44254bef1b631bc8f08f (diff)
downloadrails-83c6ea3a250361b3fc91df0a8277ee1576624ffe.tar.gz
rails-83c6ea3a250361b3fc91df0a8277ee1576624ffe.tar.bz2
rails-83c6ea3a250361b3fc91df0a8277ee1576624ffe.zip
Merge pull request #36684 from soartec-lab/fix/update_guide_active_support_not_mention_old_ruby
Delete mention of Ruby 1.9 [skip ci]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_support_core_extensions.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 8cb49ca6ae..61f1715dab 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -2358,10 +2358,6 @@ There's also a related idiom that uses the splat operator:
[*object]
```
-which in Ruby 1.8 returns `[nil]` for `nil`, and calls to `Array(object)` otherwise. (Please if you know the exact behavior in 1.9 contact fxn.)
-
-Thus, in this case the behavior is different for `nil`, and the differences with `Kernel#Array` explained above apply to the rest of `object`s.
-
NOTE: Defined in `active_support/core_ext/array/wrap.rb`.
### Duplicating