summaryrefslogtreecommitdiffstats
path: root/doc/classes/UndoRedo.xml
diff options
context:
space:
mode:
authorDoug Thompson <s-git@dougthompson.co.uk>2023-01-15 13:26:21 +0000
committerDoug Thompson <s-git@dougthompson.co.uk>2023-01-15 13:26:29 +0000
commita4c734ed32c1714b32aef6c56a06504778469c9e (patch)
treef3afe9f500b5b0a6a05c1d466fb33c98a9a6df11 /doc/classes/UndoRedo.xml
parent9711abe78773426644b640d6052273203931555e (diff)
downloadredot-engine-a4c734ed32c1714b32aef6c56a06504778469c9e.tar.gz
Class reference: snake_case .gd filenames, _on_*
This is for: https://github.com/godotengine/godot-docs/issues/6245
Diffstat (limited to 'doc/classes/UndoRedo.xml')
-rw-r--r--doc/classes/UndoRedo.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/UndoRedo.xml b/doc/classes/UndoRedo.xml
index 7258efbdda..42baf7728d 100644
--- a/doc/classes/UndoRedo.xml
+++ b/doc/classes/UndoRedo.xml
@@ -17,7 +17,7 @@
func undo_something():
pass # Put here the code that reverts what's done by "do_something()".
- func _on_MyButton_pressed():
+ func _on_my_button_pressed():
var node = get_node("MyNode2D")
undo_redo.create_action("Move the node")
undo_redo.add_do_method(self, "do_something")