Skip to content

Commit

Permalink
Update parquet/src/file/reader.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com>
  • Loading branch information
alamb and tustvold authored Oct 1, 2024
1 parent 8adfdf1 commit b9d4ded
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions parquet/src/file/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ pub trait Length {

/// Generates [`Read`]ers to read chunks of a Parquet data source.
///
/// The Parquet reader uses [`ChunkReader`] to access Parquet data, potentially
/// decoding in parallel from from the same data source. The returned readers
/// follow the model of [`File::try_clone`] where mutations of one reader affect
/// all readers.
/// The Parquet reader uses [`ChunkReader`] to access Parquet data, allowing
/// multiple decoders to read concurrently from different locations in the same file.
/// The returned readers follow the model of [`File::try_clone`] where mutations of
/// one reader affect all readers.
///
/// Implementations are provided for
/// * [`File`] for reading from local file system
Expand Down

0 comments on commit b9d4ded

Please sign in to comment.