Skip to content

Commit

Permalink
remove trailing semicolon from macro (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
escobar-west authored Mar 10, 2023
1 parent 162b362 commit c99a116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl Style<'static> {
pub const fn default() -> Self {
macro_rules! bg_color {
($color:expr) => {
concat!("color: white; padding: 0 3px; background: ", $color, ";");
concat!("color: white; padding: 0 3px; background: ", $color, ";")
};
};

Expand Down

0 comments on commit c99a116

Please sign in to comment.