Rephrase docs for conversion of float/decimal to integer

From https://github.com/typst/typst/pull/6543#issuecomment-3052557236
This commit is contained in:
mewmew 2025-07-02 13:27:42 +02:00
parent 22a57fcf5c
commit 61ce99fa38

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