summaryrefslogtreecommitdiff
path: root/doc/string/concat.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/concat.rdoc')
-rw-r--r--doc/string/concat.rdoc1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/string/concat.rdoc b/doc/string/concat.rdoc
index 2ba0c714af..92ba664b8c 100644
--- a/doc/string/concat.rdoc
+++ b/doc/string/concat.rdoc
@@ -6,7 +6,6 @@ For each given object +object+ that is an integer,
the value is considered a codepoint and converted to a character before concatenation:
'foo'.concat(32, 'bar', 32, 'baz') # => "foo bar baz" # Embeds spaces.
- 'те'.concat(1089, 1090) # => "тест"
'こん'.concat(12395, 12385, 12399) # => "こんにちは"
Related: see {Converting to New String}[rdoc-ref:String@Converting+to+New+String].