Skip to content

Commit

Permalink
refactor(clippy): apply rust 1.83.0 lints
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Nov 28, 2024
1 parent 46b81e4 commit b22ec90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion komorebi/src/com/interfaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl<'a, T: Clone> ComIn<'a, T> {
}
}

impl<'a, T> Deref for ComIn<'a, T> {
impl<T> Deref for ComIn<'_, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.data
Expand Down

0 comments on commit b22ec90

Please sign in to comment.