aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Nogueira Neves <arthurnn@gmail.com>2014-11-28 22:41:37 -0500
committerArthur Nogueira Neves <arthurnn@gmail.com>2014-11-28 22:41:37 -0500
commit4d331b8469b20fbce5f782f2b60bf7188e5c6fbd (patch)
tree2885911bb0ddf08324a6786fcb106f39e2fa335f
parentda513551e8024ba8bc8763b04ed826330025b9c9 (diff)
parent74dc57640d856b2a8d424db02b156ded62513eb9 (diff)
downloadrails-4d331b8469b20fbce5f782f2b60bf7188e5c6fbd.tar.gz
rails-4d331b8469b20fbce5f782f2b60bf7188e5c6fbd.tar.bz2
rails-4d331b8469b20fbce5f782f2b60bf7188e5c6fbd.zip
Merge pull request #17838 from claudiob/remove-ruby19-reference-in-guides
Remove a reference to Ruby 1.9 in Guides
-rw-r--r--guides/source/active_support_core_extensions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 616b813817..7b11092f3d 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -1447,7 +1447,7 @@ Returns the substring of the string starting at position `position`:
"hello".from(0) # => "hello"
"hello".from(2) # => "llo"
"hello".from(-2) # => "lo"
-"hello".from(10) # => "" if < 1.9, nil in 1.9
+"hello".from(10) # => nil
```
NOTE: Defined in `active_support/core_ext/string/access.rb`.