diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-09 11:35:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 11:35:28 +0100 |
commit | 4787da0997a38e16dd0aaacc6adc5d13092fc079 (patch) | |
tree | 127a13b49be3c1ded0b83f20daac687c5ec3fd11 /doc/classes/Dictionary.xml | |
parent | ee543253ec6ee09d4bfcf0261e3d804368cd8a94 (diff) | |
parent | 788765709dfa5e0185cbecffad637dbb545a89aa (diff) |
Merge pull request #36934 from akien-mga/variant-defargs
DocData: Fix serialization of Variant default values
Diffstat (limited to 'doc/classes/Dictionary.xml')
-rw-r--r-- | doc/classes/Dictionary.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Dictionary.xml b/doc/classes/Dictionary.xml index 6104cf165e..062e72388f 100644 --- a/doc/classes/Dictionary.xml +++ b/doc/classes/Dictionary.xml @@ -75,7 +75,7 @@ <method name="duplicate"> <return type="Dictionary"> </return> - <argument index="0" name="deep" type="bool" default="False"> + <argument index="0" name="deep" type="bool" default="false"> </argument> <description> Creates a copy of the dictionary, and returns it. @@ -102,7 +102,7 @@ </return> <argument index="0" name="key" type="Variant"> </argument> - <argument index="1" name="default" type="Variant" default="Null"> + <argument index="1" name="default" type="Variant" default="null"> </argument> <description> Returns the current value for the specified key in the [Dictionary]. If the key does not exist, the method returns the value of the optional default argument, or [code]null[/code] if it is omitted. |