summaryrefslogtreecommitdiff
path: root/doc/string/chomp.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/chomp.rdoc')
-rw-r--r--doc/string/chomp.rdoc1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/string/chomp.rdoc b/doc/string/chomp.rdoc
index 6ec7664f6b..4efff5c291 100644
--- a/doc/string/chomp.rdoc
+++ b/doc/string/chomp.rdoc
@@ -9,7 +9,6 @@ if they are <tt>"\r"</tt>, <tt>"\n"</tt>, or <tt>"\r\n"</tt>
"abc\n".chomp # => "abc"
"abc\r\n".chomp # => "abc"
"abc\n\r".chomp # => "abc\n"
- "тест\r\n".chomp # => "тест"
"こんにちは\r\n".chomp # => "こんにちは"
When +line_sep+ is <tt>''</tt> (an empty string),