Skip to content

Commit

Permalink
fixup example-binary spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Apr 21, 2022
1 parent cdb81ce commit 281e17c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example-binary/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ fn main() {
let c_num = matches.occurrences_of("c");

if c_num == 0 {
eprintln!("{} you didn't pass any -c arguments ", Emoji("🥺 ", ""))
eprintln!("{}you didn't pass any -c arguments ", Emoji("🥺 ", ""))
} else {
println!("{} you passed {} -c arguments!", Emoji("🥰 ", ""), c_num);
println!("{}you passed {} -c arguments!", Emoji("🥰 ", ""), c_num);
}

if let Some(_) = matches.subcommand_matches("echo") {
Expand Down

0 comments on commit 281e17c

Please sign in to comment.