Some clippy fixes

This commit is contained in:
Jeremy Kolb 2020-04-19 15:15:49 -04:00
parent 24af351018
commit d7f3d858ad
11 changed files with 16 additions and 19 deletions

View file

@ -235,7 +235,7 @@ fn parse_meta(meta: &str) -> ParsedMeta {
"env" => {
for key in value.split(',') {
if let Some((k, v)) = split1(key, '=') {
env.set(k.into(), v.into());
env.set(k, v.into());
}
}
}