Browse Source

Fix `emit_signal` arity in Signals tutorial (#5294)

Jonathan Harford 3 years ago
parent
commit
84f2a3d14a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/step_by_step/signals.rst

+ 1 - 1
getting_started/step_by_step/signals.rst

@@ -245,7 +245,7 @@ argument names between parentheses:
     emit any number of arguments when you emit signals. So it's up to you to
     emit any number of arguments when you emit signals. So it's up to you to
     emit the correct values.
     emit the correct values.
 
 
-To pass values, add them as the second argument to the ``emit_signal`` function:
+To pass values, add them as subsequent arguments to the ``emit_signal`` function:
 
 
 .. tabs::
 .. tabs::
  .. code-tab:: gdscript GDScript
  .. code-tab:: gdscript GDScript