From 593c261c42008e7158b2bd3d096e7d86a9a10308 Mon Sep 17 00:00:00 2001 From: aaronp64 Date: Fri, 31 Oct 2025 16:12:45 -0400 Subject: [PATCH] Explain Dictionary.set() return value in docs --- 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 56a6facf614..6ffe96e2662 100644 --- a/doc/classes/Dictionary.xml +++ b/doc/classes/Dictionary.xml @@ -508,7 +508,7 @@ - Sets the value of the element at the given [param key] to the given [param value]. This is the same as using the [code][][/code] operator ([code]dict[key] = value[/code]). + Sets the value of the element at the given [param key] to the given [param value]. This is the same as using the [code][][/code] operator ([code]dict[key] = value[/code]). Returns [code]true[/code] if the value is set successfully. Fails and returns [code]false[/code] if the dictionary is read-only, or if [param key] and [param value] don't match the dictionary's types.