Browse Source

Fix typo in GDScript reference: 'user' -> 'use' (#6033)

seanfy 3 years ago
parent
commit
1273f4a490
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 1 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -1356,7 +1356,7 @@ the ``is`` keyword can be used::
         entity.apply_damage()
         entity.apply_damage()
 
 
 To call a function in a *super class* (i.e. one ``extend``-ed in your current
 To call a function in a *super class* (i.e. one ``extend``-ed in your current
-class), user the ``super`` keyword::
+class), use the ``super`` keyword::
 
 
     super(args)
     super(args)