summaryrefslogtreecommitdiffstats
path: root/src/utils/syntect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/syntect.rs')
-rw-r--r--src/utils/syntect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/syntect.rs b/src/utils/syntect.rs
index 99b358da..0508c8b6 100644
--- a/src/utils/syntect.rs
+++ b/src/utils/syntect.rs
@@ -21,7 +21,7 @@ pub fn syntect_color_from_name(name: &str) -> Option<Color> {
/// Convert 8-bit ANSI code to #RGBA string with ANSI code in red channel and 0 in alpha channel.
// See https://github.com/sharkdp/bat/pull/543
pub fn syntect_color_from_ansi_number(n: u8) -> Option<Color> {
- Color::from_str(&format!("#{:02x}000000", n)).ok()
+ Color::from_str(&format!("#{n:02x}000000")).ok()
}
pub trait FromAnsiTermStyle {