summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJ08nY <johny@neuromancer.sk>2016-06-13 19:08:04 +0200
committerJ08nY <johny@neuromancer.sk>2016-06-13 19:08:04 +0200
commit7a19e3c6ae360fc278f2eed7b5d402d794b794e3 (patch)
treeb1dc063ad6cf8819e40ffdc921bee80402c2045b /doc
parentd42117eeb6bad1b39e23feaa3c027711e50fa88f (diff)
Dictionary: rename param in .has() .has_all() .erase()
fixes #5190, param should be named key, not value
Diffstat (limited to 'doc')
-rw-r--r--doc/base/classes.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 4e867c9973..e6a4f9646a 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -10440,7 +10440,7 @@ This approximation makes straight segments between each point, then subdivides t
</description>
</method>
<method name="erase">
- <argument index="0" name="value" type="var">
+ <argument index="0" name="key" type="var">
</argument>
<description>
Erase a dictionary key/value pair by key.
@@ -10449,7 +10449,7 @@ This approximation makes straight segments between each point, then subdivides t
<method name="has">
<return type="bool">
</return>
- <argument index="0" name="value" type="var">
+ <argument index="0" name="key" type="var">
</argument>
<description>
Return true if the dictionary has a given key.
@@ -10458,7 +10458,7 @@ This approximation makes straight segments between each point, then subdivides t
<method name="has_all">
<return type="bool">
</return>
- <argument index="0" name="values" type="Array">
+ <argument index="0" name="keys" type="Array">
</argument>
<description>
Return true if the dictionary has all of the keys in the given array.