Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/std/src/math/decimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/std/src/math/decimal256.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down