From d2b1a2eca67b51cd70b570d8e85757c93ce1cef6 Mon Sep 17 00:00:00 2001 From: Abdullah-Ajeebi <111107624+Abdullah-Ajeebi@users.noreply.github.com> Date: Fri, 26 Jan 2024 20:47:22 +0300 Subject: [PATCH] Update c_sharp_signals.rst --- tutorials/scripting/c_sharp/c_sharp_signals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/c_sharp/c_sharp_signals.rst b/tutorials/scripting/c_sharp/c_sharp_signals.rst index 57c64fde262..89222d20ea9 100644 --- a/tutorials/scripting/c_sharp/c_sharp_signals.rst +++ b/tutorials/scripting/c_sharp/c_sharp_signals.rst @@ -113,7 +113,7 @@ Sometimes you'll want to bind values to a signal when the connection is establis (or in addition to) when the signal is emitted. To do so, you can use an anonymous function like in the following example. -Here, the :ref:`Button.Pressed ` signal do not take any argument. But we +Here, the :ref:`Button.Pressed ` signal does not take any argument. But we want to use the same ``ModifyValue`` for both the "plus" and "minus" buttons. So we bind the modifier value at the time we're connecting the signals.