This commit is contained in:
Andras Schmelczer 2025-04-01 22:46:03 +01:00
parent 688fd2f1b1
commit 941100d715
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 37 additions and 12 deletions

View file

@ -25,7 +25,7 @@ impl From<OwnedTextWithCursors> for TextWithCursors<'_> {
owned
.cursors
.into_iter()
.map(|cursor| cursor.into())
.map(std::convert::Into::into)
.collect(),
)
}
@ -38,7 +38,7 @@ impl From<TextWithCursors<'_>> for OwnedTextWithCursors {
cursors: text_with_cursors
.cursors
.into_iter()
.map(|cursor| cursor.into())
.map(std::convert::Into::into)
.collect(),
}
}