Skip to content

Commit

Permalink
Merge pull request #49 from qoijjj/patch-1
Browse files Browse the repository at this point in the history
fix: remove unnecessary trailing space from formatted time
  • Loading branch information
34N0 authored Jan 23, 2024
2 parents 5b66a2b + 729a6f5 commit d971b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn format_remaining_time(remaining_time: Duration) -> String {
} else {
unit
};
formatted_time.push_str(&format!("{value} {unit_str} "));
formatted_time.push_str(&format!("{value} {unit_str}"));
}
}

Expand Down

0 comments on commit d971b8a

Please sign in to comment.