summaryrefslogtreecommitdiff
path: root/doc/string/count.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/count.rdoc')
-rw-r--r--doc/string/count.rdoc4
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/string/count.rdoc b/doc/string/count.rdoc
index 092c672d7d..7a3b9f1e21 100644
--- a/doc/string/count.rdoc
+++ b/doc/string/count.rdoc
@@ -9,10 +9,6 @@ returns the count of instances of that character:
s.count('x') # => 0
s.count('') # => 0
- s = 'тест'
- s.count('т') # => 2
- s.count('е') # => 1
-
s = 'よろしくお願いします'
s.count('よ') # => 1
s.count('し') # => 2