We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d469948 commit 092bbdaCopy full SHA for 092bbda
crates/common/src/format.rs
@@ -632,7 +632,10 @@ impl FormatSpec {
632
} else {
633
("", formatted_re.as_str())
634
};
635
- format!("{sign}{}", Self::apply_locale_formatting(mag.to_string(), locale))
+ format!(
636
+ "{sign}{}",
637
+ Self::apply_locale_formatting(mag.to_string(), locale)
638
+ )
639
640
641
// formatted_im is like "+1234j" or "-1234j" or "1234j"
0 commit comments