Skip to content

Commit

Permalink
Expose dimensions methods to the public
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelCarroll committed Apr 24, 2024
1 parent 276fb61 commit 2b60f6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xlsb/cells_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl<'a> XlsbCellsReader<'a> {
})
}

pub(crate) fn dimensions(&self) -> Dimensions {
pub fn dimensions(&self) -> Dimensions {
self.dimensions
}

Expand Down
2 changes: 1 addition & 1 deletion src/xlsx/cells_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl<'a> XlsxCellReader<'a> {
})
}

pub(crate) fn dimensions(&self) -> Dimensions {
pub fn dimensions(&self) -> Dimensions {
self.dimensions
}

Expand Down

0 comments on commit 2b60f6e

Please sign in to comment.