Skip to content

Commit

Permalink
Fix to use single quote instead of double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Sep 14, 2024
1 parent e77605b commit e319616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl ColorSet {
}

fn parse_rgba_color(s: &str) -> Option<Color> {
if !s.starts_with("#") {
if !s.starts_with('#') {
return None;
}

Expand Down

0 comments on commit e319616

Please sign in to comment.