mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Address clippy lint
This commit is contained in:
parent
b82170aded
commit
6f9d5cf44c
|
@ -313,6 +313,7 @@ fn trim_leading_spaces(s: &[u8]) -> (usize, &[u8]) {
|
|||
(count, &s[count..])
|
||||
}
|
||||
|
||||
#[allow(clippy::type_complexity)]
|
||||
fn extract_prefix_and_unescape_yaml(line: &[u8]) -> Option<(Cow<[u8]>, Cow<[u8]>)> {
|
||||
let mut split = line.splitn(2, |c| *c == b':');
|
||||
let key = split.next().unwrap();
|
||||
|
|
Loading…
Reference in New Issue
Block a user