diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-20 16:06:31 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-20 16:06:31 +0200 |
commit | 330cb45c5a9846a2a4ae1affaf7a5741dcb97a97 (patch) | |
tree | 12b205a99c8c6a78506d40e52dac1531e0ad7a2b | |
parent | d2a5153c6608d0172ebfed3c5984cc6c76ee9c6f (diff) | |
parent | d33f4820cd14e38571f0998b59fc72c0d67dfb1e (diff) | |
download | redot-engine-330cb45c5a9846a2a4ae1affaf7a5741dcb97a97.tar.gz |
Merge pull request #96981 from ItzCog/patch-1
Change "deconstructor" to "destructor"
-rw-r--r-- | doc/classes/Object.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 98811ba290..d0d0876108 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -1134,7 +1134,7 @@ Notification received when the object is initialized, before its script is attached. Used internally. </constant> <constant name="NOTIFICATION_PREDELETE" value="1"> - Notification received when the object is about to be deleted. Can act as the deconstructor of some programming languages. + Notification received when the object is about to be deleted. Can be used like destructors in object-oriented programming languages. </constant> <constant name="NOTIFICATION_EXTENSION_RELOADED" value="2"> Notification received when the object finishes hot reloading. This notification is only sent for extensions classes and derived. |