Fix typos in comments

This commit is contained in:
ccoVeille
2025-01-19 21:34:42 +01:00
committed by Peter Ammon
parent 88c8992cc3
commit b6a1bedab9
30 changed files with 34 additions and 34 deletions

View File

@@ -221,7 +221,7 @@ pub fn round_to_fractional_digits(&mut self, desired_frac_digits: i32) {
// Round up if necessary.
if self.should_round_up(last_digit_idx, remainder_to_round, mod_base) {
self[last_digit_idx] += mod_base;
// Propogate carry.
// Propagate carry.
while self[last_digit_idx] >= DIGIT_BASE {
self[last_digit_idx] = 0;
last_digit_idx -= 1;