Skip to content

Commit

Permalink
Merge pull request #34024 from miere43/script-docs-typo-fix
Browse files Browse the repository at this point in the history
Fixed typo in docs for Script and GDScript classes
  • Loading branch information
akien-mga authored Nov 30, 2019
2 parents 5bf04d1 + d747c61 commit ea8a30a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/classes/Script.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion modules/gdscript/doc_classes/GDScript.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A script implemented in the GDScript programming language.
</brief_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.
</description>
<tutorials>
Expand Down

0 comments on commit ea8a30a

Please sign in to comment.