1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

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

This commit is contained in:
miere43
2019-11-30 21:15:06 +03:00
parent 5bf04d16f0
commit d747c61187
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
A class stored as a resource.
</brief_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.
</description>
<tutorials>