Skip to content

Commit 64fba75

Browse files
Fix some clippy 1.83 warnings
1 parent 27761e0 commit 64fba75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ struct PromptIter<'a, I, T> {
275275
state: PromptIterState,
276276
}
277277

278-
impl<'a, I, T> Clone for PromptIter<'a, I, T> {
278+
impl<I, T> Clone for PromptIter<'_, I, T> {
279279
fn clone(&self) -> Self {
280280
Self {
281281
menu_mgr: self.menu_mgr,
@@ -380,7 +380,7 @@ where
380380
}
381381
}
382382

383-
impl<'a, I, T, B> Runner<'a, I, T, B>
383+
impl<I, T, B> Runner<'_, I, T, B>
384384
where
385385
I: embedded_io::Write,
386386
B: AsMut<[u8]> + ?Sized,
@@ -456,7 +456,7 @@ where
456456
}
457457
}
458458

459-
impl<'a, I, T> InnerRunner<'a, I, T>
459+
impl<I, T> InnerRunner<'_, I, T>
460460
where
461461
I: embedded_io::Write,
462462
{

0 commit comments

Comments
 (0)