Skip to content

Commit

Permalink
Removed extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
isurfer21 committed Nov 29, 2019
1 parent d363298 commit 943d8a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ fn main() {

if matches.opt_present("t") {
let local: DateTime<Local> = Local::now();
let dmy = to_date36(local.day(), local.month(), local.year(), explain_flag);
println!("{}", dmy);
let dmy = to_date36(local.day(), local.month(), local.year(), explain_flag);
println!("{}", dmy);
}

let date = matches.opt_str("d");
Expand All @@ -66,7 +66,7 @@ fn main() {
match code {
Some(code) => {
let dmy = to_date_str(code, explain_flag);
println!("{}", dmy);
println!("{}", dmy);
},
None => do_nothing(),
}
Expand Down

0 comments on commit 943d8a8

Please sign in to comment.