mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
fix(clippy): explicit_iter_loop
This commit is contained in:
@@ -363,7 +363,7 @@ fn parse_special_value<'a>(
|
||||
("nan", ExtendedBigDecimal::Nan),
|
||||
];
|
||||
|
||||
for (str, ebd) in MATCH_TABLE.iter() {
|
||||
for (str, ebd) in MATCH_TABLE {
|
||||
if input_lc.starts_with(str) {
|
||||
let mut special = ebd.clone();
|
||||
if negative {
|
||||
|
||||
Reference in New Issue
Block a user