Merge pull request #78989 from Amir-Rasteg/patch-1

Fix a typo in the `String.to_float` description
This commit is contained in:
Rémi Verschelde 2023-07-07 08:32:32 +02:00
commit ecca4e5e2f
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -924,7 +924,7 @@
var b = "1.2.3".to_float() # b is 1.2
var c = "12xy3".to_float() # c is 12.0
var d = "1e3".to_float() # d is 1000.0
var e = "Hello!".to_int() # e is 0.0
var e = "Hello!".to_float() # e is 0.0
[/codeblock]
</description>
</method>