diff --git a/src/color.rs b/src/color.rs index ecd59e9..4350250 100644 --- a/src/color.rs +++ b/src/color.rs @@ -60,7 +60,7 @@ impl ColorSet { } fn parse_rgba_color(s: &str) -> Option { - if !s.starts_with("#") { + if !s.starts_with('#') { return None; }