Skip to content

Commit

Permalink
blockreader.rs docstring tweaks BlockReader
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmoon79 committed Sep 18, 2023
1 parent 6c82506 commit 4b80fa5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/readers/blockreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ pub struct BlockReader {
pub(crate) read_block_cache_lru_miss: Count,
/// Internal LRU cache `Count` of lookup `.put`.
pub(crate) read_block_cache_lru_put: Count,
/// Internal storage `Count` of lookup hit.
/// Internal storage `Count` of lookup hit during `fn read_block()`.
pub(crate) read_blocks_hit: Count,
/// Internal storage `Count` of lookup miss.
/// Internal storage `Count` of lookup miss during `fn read_block()`.
pub(crate) read_blocks_miss: Count,
/// Internal storage `Count` of calls to `self.blocks.insert`.
pub(crate) read_blocks_put: Count,
Expand Down Expand Up @@ -2467,7 +2467,7 @@ impl BlockReader {
}
{
// check storages
// check fast LRU cache
// check fast LRU cache storage
if self.read_block_lru_cache_enabled {
match self
.read_block_lru_cache
Expand Down

0 comments on commit 4b80fa5

Please sign in to comment.