[Doc] Fix GDScript casing of `String.num_scientific`

(cherry picked from commit b384beccc5)
This commit is contained in:
A Thousand Ships 2024-02-24 17:51:21 +01:00 committed by Rémi Verschelde
parent e96c67d725
commit 3eee0c0563
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 2 deletions

View File

@ -651,8 +651,8 @@
[codeblocks]
[gdscript]
var n = -5.2e8
print(n) # Prints -520000000
print(String.NumScientific(n)) # Prints -5.2e+08
print(n) # Prints -520000000
print(String.num_scientific(n)) # Prints -5.2e+08
[/gdscript]
[csharp]
// This method is not implemented in C#.