diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-05 20:47:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 20:47:56 +0100 |
commit | cdfcf68af96fa3b9c0e78445e042bc60dff365f7 (patch) | |
tree | 8d018e18890eb7e876227799b3d1f2520207ce7e | |
parent | 7f98e663d1d9fbd5418f56a7fb246f0c34fe1a09 (diff) | |
parent | 9c65927aebeb11a67bfc533947b0715314606f43 (diff) |
Merge pull request #44925 from LoipesMas/str-docs
More explicit wording for str() function
-rw-r--r-- | doc/classes/@GlobalScope.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index b40ae65a61..bf81362e79 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -668,7 +668,7 @@ </method> <method name="print" qualifiers="vararg"> <description> - 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", "b", a) # Prints ab[1, 2, 3] @@ -994,7 +994,7 @@ <return type="String"> </return> <description> - 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. </description> </method> <method name="str2var"> |