Fix Clippy lint

This commit is contained in:
Niko 2025-08-13 01:30:22 -07:00
parent 814b2b836f
commit 9162a2c502
No known key found for this signature in database

View file

@ -353,7 +353,7 @@ impl WhisperState {
}
/// Get an iterator over all segments.
pub fn as_iter(&self) -> WhisperStateSegmentIterator {
pub fn as_iter(&self) -> WhisperStateSegmentIterator<'_> {
WhisperStateSegmentIterator::new(self)
}
}