From f8a40dd7632467969f01f9b6bf9fb4104a7b3a57 Mon Sep 17 00:00:00 2001 From: Johannes Witt Date: Thu, 30 Jul 2020 14:53:46 +0200 Subject: [PATCH] Fix GUI Skinning typo in code (#3846) --- tutorials/gui/gui_skinning.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/gui/gui_skinning.rst b/tutorials/gui/gui_skinning.rst index 6daf00df9..08ab13117 100644 --- a/tutorials/gui/gui_skinning.rst +++ b/tutorials/gui/gui_skinning.rst @@ -79,7 +79,7 @@ An example usage: .. code-tab:: gdscript GDScript var theme = Theme.new() - ttheme.set_color("font_color", "Label", Color.red) + theme.set_color("font_color", "Label", Color.red) var label = Label.new() label.theme = theme