summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-09-18 10:53:26 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-09-18 10:53:26 +0200
commit240275fb0d2e22ef5df282f71075c9eba2d18dd1 (patch)
treee2770b27e61a580ee83b1ccbce4d7e8e094531ff /modules
parent80be221608c36f6b8ac14ccb99c9adbdad7f04a5 (diff)
parent4c785ae3f82416ebb7225af8458eddf979361dd2 (diff)
Merge pull request #65979 from iwoithe/fix-onready-typo
change "no" to "not" in the @onready documentation
Diffstat (limited to 'modules')
-rw-r--r--modules/gdscript/doc_classes/@GDScript.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml
index 4f325fcf52..6cf8c1a30e 100644
--- a/modules/gdscript/doc_classes/@GDScript.xml
+++ b/modules/gdscript/doc_classes/@GDScript.xml
@@ -555,7 +555,7 @@
<annotation name="@onready">
<return type="void" />
<description>
- Mark the following property as assigned on [Node]'s ready state change. Values for these properties are no assigned immediately upon the node's creation, and instead are computed and stored right before [method Node._ready].
+ Mark the following property as assigned on [Node]'s ready state change. Values for these properties are not assigned immediately upon the node's creation, and instead are computed and stored right before [method Node._ready].
[codeblock]
@onready var character_name: Label = $Label
[/codeblock]