From 0743e334077e2bd1042541a609ec4a538dadd569 Mon Sep 17 00:00:00 2001 From: Dominus Iniquitatis Date: Sun, 16 Oct 2022 15:36:32 +0300 Subject: [PATCH] Fix missing parenthesis in the documentation --- doc/classes/PropertyTweener.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/PropertyTweener.xml b/doc/classes/PropertyTweener.xml index 75d9c919aa8..78ead65cdd9 100644 --- a/doc/classes/PropertyTweener.xml +++ b/doc/classes/PropertyTweener.xml @@ -27,7 +27,7 @@ Sets a custom initial value to the [PropertyTweener]. Example: [codeblock] var tween = get_tree().create_tween() - tween.tween_property(self, "position", Vector2(200, 100), 1).from(Vector2(100, 100) #this will move the node from position (100, 100) to (200, 100) + tween.tween_property(self, "position", Vector2(200, 100), 1).from(Vector2(100, 100)) #this will move the node from position (100, 100) to (200, 100) [/codeblock]