Skip to content

Commit

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

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

0 comments on commit ee2bac0

Please sign in to comment.