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