Skip to content

Commit

Permalink
Make UnicodeRanges stored value public.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoods-cimpress authored Aug 14, 2024
1 parent f4c2c94 commit e5ac245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tables/os2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl SelectionFlags {

/// [Unicode Ranges](https://docs.microsoft.com/en-us/typography/opentype/spec/os2#ur).
#[derive(Clone, Copy, Default, Debug)]
pub struct UnicodeRanges(u128);
pub struct UnicodeRanges(pub u128);

impl UnicodeRanges {
/// Checks if ranges contain the specified character.
Expand Down

0 comments on commit e5ac245

Please sign in to comment.