Skip to content

Commit 1a38078

Browse files
committed
clippy fix
1 parent 1469016 commit 1a38078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ringbuffer_trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ mod iter {
395395
}
396396
}
397397

398-
impl<'rb, T, RB: RingBuffer<T>> Iterator for RingBufferDrainingIterator<'rb, T, RB> {
398+
impl<T, RB: RingBuffer<T>> Iterator for RingBufferDrainingIterator<'_, T, RB> {
399399
type Item = T;
400400

401401
fn next(&mut self) -> Option<T> {

0 commit comments

Comments
 (0)