diff options
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/access.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/access.rb b/activesupport/lib/active_support/core_ext/string/access.rb index 76b30b4c19..2ebfd48818 100644 --- a/activesupport/lib/active_support/core_ext/string/access.rb +++ b/activesupport/lib/active_support/core_ext/string/access.rb @@ -89,7 +89,7 @@ class String # the given limit is greater than or equal to the string length, returns self. # # str = "hello" - # str.last #=> "h" + # str.last #=> "o" # str.last(1) #=> "h" # str.last(2) #=> "lo" # str.last(0) #=> "" |