Update description of Object.free() method
Clarify that variables pointing to an object don't become `null` when that object is freed, it just makes them invalid.
(cherry picked from commit ccf5703568
)
This commit is contained in:
parent
d4599fff68
commit
55bad66447
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@
|
||||||
<return type="void">
|
<return type="void">
|
||||||
</return>
|
</return>
|
||||||
<description>
|
<description>
|
||||||
Deletes the object from memory. Any pre-existing reference to the freed object will now return [code]null[/code].
|
Deletes the object from memory. Any pre-existing reference to the freed object will become invalid, e.g. [code]is_instance_valid(object)[/code] will return [code]false[/code].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get" qualifiers="const">
|
<method name="get" qualifiers="const">
|
||||||
|
|
Loading…
Reference in a new issue