Skip to content

Commit

Permalink
chore: trim newline in banner
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 30, 2024
1 parent 50f812c commit c8f2c90
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/cli/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@ fn show_version() -> std::io::Result<()> {
/ __ `__ \/ / ___/ _ \______/ _ \/ __ \______/ __ \/ / __ `/ ___/ _ \
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
/_/
"#
.trim_start_matches("\n"),
/_/"#
.trim_start_matches("\n"),
);
miseprintln!("{banner}");
}
Expand Down

0 comments on commit c8f2c90

Please sign in to comment.