Skip to content

Commit 0f62e35

Browse files
authored
Merge pull request #65417 from volokh0x/to-fix-typo-dictionary
Fix typos in Dictionary.xml
2 parents a49ec43 + ff23def commit 0f62e35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/classes/Dictionary.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Dictionary type.
55
</brief_description>
66
<description>
7-
Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are composed of pairs of keys (which must be unique) and values. Dictionaries will preserve the insertion order when adding elements. In other programming languages, this data structure is sometimes referred to as a hash map or associative array.
7+
Dictionary type. Associative container, which contains values referenced by unique keys. Dictionaries are composed of pairs of keys (which must be unique) and values. Dictionaries will preserve the insertion order when adding elements. In other programming languages, this data structure is sometimes referred to as a hash map or associative array.
88
You can define a dictionary by placing a comma-separated list of [code]key: value[/code] pairs in curly braces [code]{}[/code].
99
Erasing elements while iterating over them [b]is not supported[/b] and will result in undefined behavior.
1010
[b]Note:[/b] Dictionaries are always passed by reference. To get a copy of a dictionary which can be modified independently of the original dictionary, use [method duplicate].
@@ -223,7 +223,7 @@
223223
<param index="0" name="value" type="Variant" />
224224
<description>
225225
Returns the first key whose associated value is equal to [param value], or [code]null[/code] if no such value is found.
226-
[b]Node:[/b] [code]null[/code] is also a valid key. I you have it in your [Dictionary], the [method find_key] method can give misleading results.
226+
[b]Note:[/b] [code]null[/code] is also a valid key. If you have it in your [Dictionary], the [method find_key] method can give misleading results.
227227
</description>
228228
</method>
229229
<method name="get" qualifiers="const">

0 commit comments

Comments
 (0)