From 9162a2c502789a7fa837a2e8ae4163e46cf75fec Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 13 Aug 2025 01:30:22 -0700 Subject: [PATCH] Fix Clippy lint --- src/whisper_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/whisper_state.rs b/src/whisper_state.rs index d6e09ea..16c2fc5 100644 --- a/src/whisper_state.rs +++ b/src/whisper_state.rs @@ -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) } }