summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/string/aref.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/string/aref.rdoc b/doc/string/aref.rdoc
index bd33c4c050..ee4c3d33d4 100644
--- a/doc/string/aref.rdoc
+++ b/doc/string/aref.rdoc
@@ -8,7 +8,7 @@ returns the 1-character substring found in self at character offset index:
'hello'[0] # => "h"
'hello'[4] # => "o"
'hello'[5] # => nil
- 'тест'[2] # => "с"
+ 'Привет'[2] # => "и"
'こんにちは'[4] # => "は"
With negative integer argument +index+ given,
@@ -92,7 +92,7 @@ returns the matching substring of +self+, if found:
'hello'['ell'] # => "ell"
'hello'[''] # => ""
'hello'['nosuch'] # => nil
- 'тест'['ес'] # => "ес"
+ 'Привет'['ив'] # => "ив"
'こんにちは'['んにち'] # => "んにち"
Related: see {Converting to New String}[rdoc-ref:String@Converting+to+New+String].