Skip to content

Commit

Permalink
Remove superfluous lifetimes to get clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
matzipan committed Jun 20, 2024
1 parent acaecdb commit 7ca1fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/lox-io/src/ndm/kvn/deserializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub trait KvnDeserializer {
where
Self: Sized;

fn from_kvn_str<'a>(kvn: &'a str) -> Result<Self, KvnDeserializerErr<String>>
fn from_kvn_str(kvn: &str) -> Result<Self, KvnDeserializerErr<String>>
where
Self: Sized,
{
Expand Down

0 comments on commit 7ca1fb0

Please sign in to comment.