From 5ce9bfcb4f5d80d4c25ef13211eb58f4e569e603 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 --- 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 f47649363e5..b6b17d03fb3 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.