More explicit wording for str() and print() functions

(cherry picked from commit 9c65927aeb)
This commit is contained in:
LoipesMas 2021-01-05 00:29:04 +01:00 committed by Rémi Verschelde
parent 43910510e0
commit 0fc433d046
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -804,7 +804,7 @@
<return type="void">
</return>
<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", "=", a) # Prints a=[1, 2, 3]
@ -1138,7 +1138,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.
[codeblock]
var a = [10, 20, 30]
var b = str(a);