Skip to content

Commit

Permalink
Merge pull request #97 from jonasbb/fix-warnings
Browse files Browse the repository at this point in the history
Fix new lint warning
  • Loading branch information
jonasbb committed Mar 9, 2024
2 parents c13ab64 + 0d7ccff commit 02ee93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ where
T: 'static + DeserializeOwned + Send,
{
iter: mpsc::IntoIter<ProcessingStatus<Vec<Result<T, MtJsonlError>>>>,
tmp_state: ::std::vec::IntoIter<Result<T, MtJsonlError>>,
tmp_state: std::vec::IntoIter<Result<T, MtJsonlError>>,
did_complete: bool,
}

Expand Down

0 comments on commit 02ee93b

Please sign in to comment.