From 84f2a3d14a72a126fd69321c0fa97bd5bc65d85a Mon Sep 17 00:00:00 2001 From: Jonathan Harford Date: Mon, 4 Oct 2021 16:54:40 -0700 Subject: [PATCH] Fix `emit_signal` arity in Signals tutorial (#5294) --- getting_started/step_by_step/signals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/step_by_step/signals.rst b/getting_started/step_by_step/signals.rst index bb93e6381..7ab122cac 100644 --- a/getting_started/step_by_step/signals.rst +++ b/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 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:: .. code-tab:: gdscript GDScript