More explicit wording for str() and print() functions
(cherry picked from commit 9c65927aeb
)
This commit is contained in:
parent
43910510e0
commit
0fc433d046
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user