From 8b9967fa2c7968b1346ce73e2e81b130d18e9d45 Mon Sep 17 00:00:00 2001 From: mlombardi Date: Mon, 20 Oct 2025 23:41:09 +0800 Subject: [PATCH] Fix typos --- packages/std/src/math/decimal.rs | 2 +- packages/std/src/math/decimal256.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/std/src/math/decimal.rs b/packages/std/src/math/decimal.rs index 36c45a24ca..3832ee7471 100644 --- a/packages/std/src/math/decimal.rs +++ b/packages/std/src/math/decimal.rs @@ -457,7 +457,7 @@ impl Decimal { self.0 / Self::DECIMAL_FRACTIONAL } - /// Converts this decimal to an unsigned integer by rounting up + /// Converts this decimal to an unsigned integer by rounding up /// to the next integer, e.g. 22.3 becomes 23. /// /// ## Examples diff --git a/packages/std/src/math/decimal256.rs b/packages/std/src/math/decimal256.rs index 6d0fa7cb67..c179ccc921 100644 --- a/packages/std/src/math/decimal256.rs +++ b/packages/std/src/math/decimal256.rs @@ -472,7 +472,7 @@ impl Decimal256 { self.0 / Self::DECIMAL_FRACTIONAL } - /// Converts this decimal to an unsigned integer by rounting up + /// Converts this decimal to an unsigned integer by rounding up /// to the next integer, e.g. 22.3 becomes 23. /// /// ## Examples