Skip to content

Commit

Permalink
*: fix Rust 1.83 clippy warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
  • Loading branch information
cyphar committed Nov 30, 2024
1 parent 99dd043 commit 29da253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl<'a> Iterator for RawComponents<'a> {
}
}

impl<'a> DoubleEndedIterator for RawComponents<'a> {
impl DoubleEndedIterator for RawComponents<'_> {
fn next_back(&mut self) -> Option<Self::Item> {
match self.inner {
None => None,
Expand Down

0 comments on commit 29da253

Please sign in to comment.