Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/best_practices/godot_notifications.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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!".
Expand Down
Loading