Skip to content

Commit 9fb6796

Browse files
committed
fix: clippy warnings
1 parent 74e49c1 commit 9fb6796

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

versatiles/src/tools/help.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ fn print_markdown(md: &str) {
5656
.chunks(1)
5757
.map(|char| u8::from_str_radix(std::str::from_utf8(char).unwrap(), 16).unwrap() * 17)
5858
.collect::<Vec<u8>>();
59-
return Color::Rgb {
59+
Color::Rgb {
6060
r: rgb[0],
6161
g: rgb[1],
6262
b: rgb[2],
63-
};
63+
}
6464
};
6565

6666
// Configure header level 1

0 commit comments

Comments
 (0)