Skip to content

Commit

Permalink
blockreader.rs NFC docstring about read_block_FileTar
Browse files Browse the repository at this point in the history
Issue #13
  • Loading branch information
jtmoon79 committed Aug 9, 2022
1 parent fb4ec2b commit a503554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/readers/blockreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1706,9 +1706,9 @@ impl BlockReader {
/// XXX: This reads the entire file within the `.tar` file during the first call.
/// See Issue #13
///
/// This one big read is due to crate `tar` not providing a method to store `tar::Handle` or
/// This one big read is due to crate `tar` not providing a method to store `tar::Archive` or
/// `tar::Entry` due to inter-instance references and explicit lifetimes.
/// A `tar::Entry` holds a reference to data within the `tar::Handle`.
/// A `tar::Entry` holds a reference to data within the `tar::Archive`.
/// I found it impossible to store both related instances and then later utilize the
/// `tar::Entry`.
///
Expand Down

0 comments on commit a503554

Please sign in to comment.