Quellcode durchsuchen

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

seanfy vor 3 Jahren
Ursprung
Commit
1273f4a490
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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()
 
 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)