diff options
| author | Thomas Otto <th1000s@posteo.net> | 2024-11-29 00:41:46 +0100 |
|---|---|---|
| committer | Thomas Otto <th1000s@posteo.net> | 2024-11-29 01:00:18 +0100 |
| commit | 4655aa216a5d4fc5badc072ff1fb59962d79f1cb (patch) | |
| tree | fa5ed40968a7adcbf7adbfb33f2f377efe9dabb4 /src/handlers/mod.rs | |
| parent | 959471392d5aa0289f979c8898260e0f133d9ae7 (diff) | |
clippy 1.83: apply explicit lifetimes elisions suggestions
Diffstat (limited to 'src/handlers/mod.rs')
| -rw-r--r-- | src/handlers/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers/mod.rs b/src/handlers/mod.rs index fcbabef..40bdf68 100644 --- a/src/handlers/mod.rs +++ b/src/handlers/mod.rs @@ -17,7 +17,7 @@ pub mod submodule; use crate::delta::{State, StateMachine}; -impl<'a> StateMachine<'a> { +impl StateMachine<'_> { pub fn handle_additional_cases(&mut self, to_state: State) -> std::io::Result<bool> { let mut handled_line = false; |
