Browse Source

Fixed typo in docs for Script and GDScript classes ("exends" -> "extends")

miere43 5 years ago
parent
commit
d747c61187
2 changed files with 2 additions and 2 deletions
  1. 1 1
      doc/classes/Script.xml
  2. 1 1
      modules/gdscript/doc_classes/GDScript.xml

+ 1 - 1
doc/classes/Script.xml

@@ -4,7 +4,7 @@
 		A class stored as a resource.
 		A class stored as a resource.
 	</brief_description>
 	</brief_description>
 	<description>
 	<description>
-		A class stored as a resource. A script exends the functionality of all objects that instance it.
+		A class stored as a resource. A script extends the functionality of all objects that instance it.
 		The [code]new[/code] method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
 		The [code]new[/code] method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
 	</description>
 	</description>
 	<tutorials>
 	<tutorials>

+ 1 - 1
modules/gdscript/doc_classes/GDScript.xml

@@ -4,7 +4,7 @@
 		A script implemented in the GDScript programming language.
 		A script implemented in the GDScript programming language.
 	</brief_description>
 	</brief_description>
 	<description>
 	<description>
-		A script implemented in the GDScript programming language. The script exends the functionality of all objects that instance it.
+		A script implemented in the GDScript programming language. The script extends the functionality of all objects that instance it.
 		[method new] creates a new instance of the script. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
 		[method new] creates a new instance of the script. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
 	</description>
 	</description>
 	<tutorials>
 	<tutorials>