From cf0e191a6a42a2382128765dc0ff1531ad9800af Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= <blaz@mxxn.io>
Date: Thu, 25 Mar 2021 17:45:52 +0900
Subject: [PATCH] Clippy lint

---
 helix-view/src/theme.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs
index f7731929..ec7c746a 100644
--- a/helix-view/src/theme.rs
+++ b/helix-view/src/theme.rs
@@ -137,7 +137,7 @@ fn parse_style(style: &mut Style, value: Value) {
 }
 
 fn hex_string_to_rgb(s: &str) -> Option<(u8, u8, u8)> {
-    if s.starts_with("#") && s.len() >= 7 {
+    if s.starts_with('#') && s.len() >= 7 {
         if let (Ok(red), Ok(green), Ok(blue)) = (
             u8::from_str_radix(&s[1..3], 16),
             u8::from_str_radix(&s[3..5], 16),