mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
fix(clippy): explicit_iter_loop
This commit is contained in:
parent
19e04a26cf
commit
dc72ad9242
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue