Skip to content

Commit

Permalink
docs: adjust docs
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Sep 4, 2023
1 parent c12663a commit d3234b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct TableStats {
}

impl TableStats {
/// Maximum traversal distance to reach the deepest (key, value) pair, across all tables
/// Maximum traversal distance to reach the deepest (key, value) pair in the table
pub fn tree_height(&self) -> u32 {
self.tree_height
}
Expand All @@ -32,7 +32,7 @@ impl TableStats {
self.leaf_pages
}

/// Number of branch pages in btrees that store user data
/// Number of branch pages in the btree that store user data
pub fn branch_pages(&self) -> u64 {
self.branch_pages
}
Expand Down

0 comments on commit d3234b6

Please sign in to comment.