summaryrefslogtreecommitdiff
path: root/doc/string/each_char.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/each_char.rdoc')
-rw-r--r--doc/string/each_char.rdoc5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/string/each_char.rdoc b/doc/string/each_char.rdoc
index 5aa85b28ad..2dd56711d3 100644
--- a/doc/string/each_char.rdoc
+++ b/doc/string/each_char.rdoc
@@ -7,11 +7,6 @@ returns +self+:
end
a # => ["h", "e", "l", "l", "o"]
a = []
- 'тест'.each_char do |char|
- a.push(char)
- end
- a # => ["т", "е", "с", "т"]
- a = []
'こんにちは'.each_char do |char|
a.push(char)
end