Skip to content

Commit

Permalink
Expose CompactDecimalFormatterOptions in the compactdecimal module (u…
Browse files Browse the repository at this point in the history
  • Loading branch information
younies authored Nov 5, 2024
1 parent 7a2aa53 commit 8ce5a89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/experimental/src/compactdecimal/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ pub mod provider;

pub use error::ExponentError;
pub use formatter::CompactDecimalFormatter;
pub use options::CompactDecimalFormatterOptions;
2 changes: 1 addition & 1 deletion components/experimental/src/compactdecimal/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use icu_decimal::options::{FixedDecimalFormatterOptions, GroupingStrategy};
#[derive(Debug, Eq, PartialEq, Clone)]
#[non_exhaustive]
pub struct CompactDecimalFormatterOptions {
/// Options to configure the inner [`FixedDecimalFormatter`].
/// Options to configure the inner [`icu_decimal::FixedDecimalFormatter`].
pub fixed_decimal_formatter_options: FixedDecimalFormatterOptions,
}

Expand Down

0 comments on commit 8ce5a89

Please sign in to comment.