From 21f4fb2b64c86a9873ddadc1db8c80259a62b8f0 Mon Sep 17 00:00:00 2001 From: Nadav Date: Fri, 28 Nov 2025 03:27:17 +0100 Subject: [PATCH] Add exclamation point to example (#11183) * add exclamation point to example --- tutorials/best_practices/godot_notifications.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/best_practices/godot_notifications.rst b/tutorials/best_practices/godot_notifications.rst index 4afb1f592..f1821d614 100644 --- a/tutorials/best_practices/godot_notifications.rst +++ b/tutorials/best_practices/godot_notifications.rst @@ -292,7 +292,7 @@ values will set up according to the following sequence: public: String get_test() { return test; } - void set_test(String p_test) { return test = p_test; } + void set_test(String p_test) { test = p_test + "!"; } MyNode() { // Triggers the setter, changing _test's value from "one" to "two!".