Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
desujoy committed Oct 20, 2023
1 parent aea807d commit 6d8b13a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn main() {
}
let subcommand = args.remove(0);
match subcommand.as_str() {
"blur" => {
"blur" => {
// Blur Effect
if args.len() != 3 {
print_usage_and_exit();
Expand All @@ -18,7 +18,7 @@ fn main() {
blur(infile, outfile, amount);
}

"brighten" => {
"brighten" => {
// Brightening Effect
if args.len() != 3 {
print_usage_and_exit();
Expand Down

0 comments on commit 6d8b13a

Please sign in to comment.