Skip to content

Commit ab85298

Browse files
Fix clippy warning, unused lifetime parameter
1 parent faa452e commit ab85298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ impl<'a> TryFrom<&'a ZendStr> for &'a str {
333333
}
334334
}
335335

336-
impl<'a> TryFrom<&ZendStr> for String {
336+
impl TryFrom<&ZendStr> for String {
337337
type Error = Error;
338338

339339
fn try_from(value: &ZendStr) -> Result<Self> {

0 commit comments

Comments
 (0)