From 0fc433d046a230bd3722e0846b699f83b6f1bd40 Mon Sep 17 00:00:00 2001 From: LoipesMas <46327403+LoipesMas@users.noreply.github.com> Date: Tue, 5 Jan 2021 00:29:04 +0100 Subject: [PATCH] More explicit wording for str() and print() functions (cherry picked from commit 9c65927aebeb11a67bfc533947b0715314606f43) --- modules/gdscript/doc_classes/@GDScript.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index 89dd659513f..9c1d9722a61 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -804,7 +804,7 @@ - Converts one or more arguments to strings in the best way possible and prints them to the console. + Converts one or more arguments of any type to string in the best way possible and prints them to the console. [codeblock] a = [1, 2, 3] print("a", "=", a) # Prints a=[1, 2, 3] @@ -1138,7 +1138,7 @@ - Converts one or more arguments to string in the best way possible. + Converts one or more arguments of any type to string in the best way possible. [codeblock] var a = [10, 20, 30] var b = str(a);