From d963a322132fd4002743ee242ba05883b287cf64 Mon Sep 17 00:00:00 2001 From: lopho Date: Sat, 4 May 2019 17:15:20 +0200 Subject: [PATCH] Document dictionary erase return value (cherry picked from commit 5ce9bfcb4f5d80d4c25ef13211eb58f4e569e603) --- 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 185a9387b22..9efbc6b1570 100644 --- a/doc/classes/Dictionary.xml +++ b/doc/classes/Dictionary.xml @@ -47,7 +47,7 @@ - Erase a dictionary key/value pair by key. Do not erase elements while iterating over the dictionary. + Erase a dictionary key/value pair by key. Returns [code]true[/code] if the given key was present in the dictionary, [code]false[/code] otherwise. Do not erase elements while iterating over the dictionary.