From 121fb46ab98c244069dc196644afef7e2747497d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 7 Nov 2019 13:12:06 +0100 Subject: [PATCH] Clarify that String.insert returns a copy Supersedes and closes #32620. --- doc/classes/String.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/String.xml b/doc/classes/String.xml index cf152e716e5..e0a4a24299c 100644 --- a/doc/classes/String.xml +++ b/doc/classes/String.xml @@ -459,7 +459,7 @@ - Inserts a substring at a given position. + Returns a copy of the string with the substring [code]what[/code] inserted at the given position.