From 294008015e63a917656e464c781a925034822705 Mon Sep 17 00:00:00 2001 From: Zak Grumbles Date: Tue, 31 Mar 2020 21:32:51 -0500 Subject: [PATCH] Clarify Dictionary duplicate params godotengine#37162 * Added additional clarification for the function of the 'deep' parameter in the Dictionary's `duplicate` method. (cherry picked from commit 469b7c948f8e132946ad090df89081784ca2c849) --- doc/classes/Dictionary.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Dictionary.xml b/doc/classes/Dictionary.xml index 9526bc8da1..c14f0ec2a6 100644 --- a/doc/classes/Dictionary.xml +++ b/doc/classes/Dictionary.xml @@ -76,7 +76,7 @@ - Creates a copy of the dictionary, and returns it. + Creates a copy of the dictionary, and returns it. The [code]deep[/code] parameter causes inner dictionaries and arrays to be copied recursively, but does not apply to objects.