We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cargo fmt
cargo clippy
1 parent 9f31c47 commit bdcda3aCopy full SHA for bdcda3a
src/lib.rs
@@ -4,7 +4,6 @@ use std::path::PathBuf;
4
5
use clap::{Parser, Subcommand};
6
7
-
8
/// Parses the Git history.
9
#[derive(Parser, Debug)]
10
#[clap(version, about, long_about = None)]
@@ -13,7 +12,7 @@ pub struct Args {
13
12
input_method: InputMethod,
14
15
/// Always show the entire output.
16
- #[clap(short='v', long="verbose")]
+ #[clap(short = 'v', long = "verbose")]
17
is_verbose: bool,
18
19
/// Filter for certain author names. ORs if specified multiple times.
@@ -156,7 +155,6 @@ impl InputMethod {
156
155
}
157
158
159
160
/// The revealed filter creteria.
161
///
162
/// This data structure allows to filter the input commits by certain creteria.
0 commit comments