Skip to content

Commit

Permalink
fix comments unicode-org#1.
Browse files Browse the repository at this point in the history
  • Loading branch information
younies committed Jul 31, 2022
1 parent 319de6f commit 805d664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/plurals/src/operands.rs
Expand Up @@ -77,7 +77,7 @@ use fixed_decimal::FixedDecimal;
/// t: 45,
/// c: 0,
/// }),
/// FixedDecimal::from(12345)
/// FixedDecimal::from(12345_i128)
/// .multiplied_pow10(-2)
/// .to_string()
/// .parse()
Expand Down
2 changes: 1 addition & 1 deletion utils/fixed_decimal/src/decimal.rs
Expand Up @@ -378,7 +378,7 @@ impl FixedDecimal {
self.lower_magnitude = 0;
self.magnitude = 0;
self.digits.clear();
self.sign = Sign::Positive;
self.sign = Sign::None;

#[cfg(debug_assertions)]
self.check_invariants();
Expand Down

0 comments on commit 805d664

Please sign in to comment.