From 54f26c66ab9c5edf2f61867312cdaa79b9795af1 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Fri, 4 Aug 2023 17:00:40 +0800 Subject: [PATCH] Fix wrong example output of float*Color in classref --- doc/classes/float.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/float.xml b/doc/classes/float.xml index 14e30b69a5d..7d74e3d8325 100644 --- a/doc/classes/float.xml +++ b/doc/classes/float.xml @@ -70,7 +70,7 @@ Multiplies each component of the [Color], including the alpha, by the given [float]. [codeblock] - print(1.5 * Color(0.5, 0.5, 0.5)) # Color(0.75, 0.75, 0.75) + print(1.5 * Color(0.5, 0.5, 0.5)) # Prints "(0.75, 0.75, 0.75, 1.5)" [/codeblock]