Merge 61ce99fa386baffeff55895547a5441b7db51e66 into ac77fdbb6ee9c4a33813a75e056cb5953d14b1db

This commit is contained in:
Robin 2025-07-09 22:11:31 +02:00 committed by GitHub
commit 429f4b8792
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ impl i64 {
/// or smaller than the minimum 64-bit signed integer. /// or smaller than the minimum 64-bit signed integer.
/// ///
/// - Booleans are converted to `0` or `1`. /// - Booleans are converted to `0` or `1`.
/// - Floats and decimals are truncated to the next 64-bit integer. /// - Floats and decimals are rounded to the next 64-bit integer towards zero.
/// - Strings are parsed in base 10. /// - Strings are parsed in base 10.
/// ///
/// ```example /// ```example