Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
MiSawa committed Mar 26, 2022
1 parent f4bbce3 commit ac9474f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct MainArgs {
verbosity: Verbosity,

/// Show license text of dependencies
#[cfg(feature="about")]
#[cfg(feature = "about")]
#[clap(long)]
about: bool,
}
Expand Down Expand Up @@ -204,10 +204,10 @@ fn main() -> Result<()> {
init_log(&args.verbosity)?;
log::debug!("Parsed argument: {:?}", args);

#[cfg(feature="about")]
#[cfg(feature = "about")]
if args.about {
println!("{}", xq_about::get_about_text());
return Ok(())
return Ok(());
}

match args.input_format.get() {
Expand Down

0 comments on commit ac9474f

Please sign in to comment.