Skip to content

Commit bdcda3a

Browse files
committed
Run cargo fmt and cargo clippy
1 parent 9f31c47 commit bdcda3a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use std::path::PathBuf;
44

55
use clap::{Parser, Subcommand};
66

7-
87
/// Parses the Git history.
98
#[derive(Parser, Debug)]
109
#[clap(version, about, long_about = None)]
@@ -13,7 +12,7 @@ pub struct Args {
1312
input_method: InputMethod,
1413

1514
/// Always show the entire output.
16-
#[clap(short='v', long="verbose")]
15+
#[clap(short = 'v', long = "verbose")]
1716
is_verbose: bool,
1817

1918
/// Filter for certain author names. ORs if specified multiple times.
@@ -156,7 +155,6 @@ impl InputMethod {
156155
}
157156
}
158157

159-
160158
/// The revealed filter creteria.
161159
///
162160
/// This data structure allows to filter the input commits by certain creteria.

0 commit comments

Comments
 (0)