Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jimexist committed Feb 2, 2022
1 parent 6fe43f0 commit 0245900
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions parquet/src/bin/parquet-read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//!
//! `parquet-read` can be installed using `cargo`:
//! ```
//! cargo install parquet
//! cargo install parquet --features=cli
//! ```
//! After this `parquet-read` should be globally available:
//! ```
Expand All @@ -30,7 +30,7 @@
//!
//! The binary can also be built from the source code and run as follows:
//! ```
//! cargo run --bin parquet-read XYZ.parquet
//! cargo run --features=cli --bin parquet-read XYZ.parquet
//! ```
//!
//! # Usage
Expand Down
4 changes: 2 additions & 2 deletions parquet/src/bin/parquet-rowcount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//!
//! `parquet-rowcount` can be installed using `cargo`:
//! ```
//! cargo install parquet
//! cargo install parquet --features=cli
//! ```
//! After this `parquet-rowcount` should be globally available:
//! ```
Expand All @@ -30,7 +30,7 @@
//!
//! The binary can also be built from the source code and run as follows:
//! ```
//! cargo run --bin parquet-rowcount XYZ.parquet ABC.parquet ZXC.parquet
//! cargo run --features=cli --bin parquet-rowcount XYZ.parquet ABC.parquet ZXC.parquet
//! ```
//!
//! Note that `parquet-rowcount` reads full file schema, no projection or filtering is
Expand Down
4 changes: 2 additions & 2 deletions parquet/src/bin/parquet-schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//!
//! `parquet-schema` can be installed using `cargo`:
//! ```
//! cargo install parquet
//! cargo install parquet --features=cli
//! ```
//! After this `parquet-schema` should be globally available:
//! ```
Expand All @@ -30,7 +30,7 @@
//!
//! The binary can also be built from the source code and run as follows:
//! ```
//! cargo run --bin parquet-schema XYZ.parquet
//! cargo run --features=cli --bin parquet-schema XYZ.parquet
//! ```
//!
//! Note that `verbose` is an optional boolean flag that allows to print schema only,
Expand Down

0 comments on commit 0245900

Please sign in to comment.