[Doc] Fix GDScript casing of `String.num_scientific`
(cherry picked from commit b384beccc5
)
This commit is contained in:
parent
e96c67d725
commit
3eee0c0563
|
@ -651,8 +651,8 @@
|
||||||
[codeblocks]
|
[codeblocks]
|
||||||
[gdscript]
|
[gdscript]
|
||||||
var n = -5.2e8
|
var n = -5.2e8
|
||||||
print(n) # Prints -520000000
|
print(n) # Prints -520000000
|
||||||
print(String.NumScientific(n)) # Prints -5.2e+08
|
print(String.num_scientific(n)) # Prints -5.2e+08
|
||||||
[/gdscript]
|
[/gdscript]
|
||||||
[csharp]
|
[csharp]
|
||||||
// This method is not implemented in C#.
|
// This method is not implemented in C#.
|
||||||
|
|
Loading…
Reference in New Issue