Fix lints

This commit is contained in:
Andras Schmelczer 2025-06-22 15:02:50 +01:00
parent df6ec254ca
commit 9af06183e7
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 11 additions and 19 deletions

View file

@ -19,7 +19,7 @@ impl StringBuilder<'_> {
buffer: String::with_capacity(original.len()),
#[cfg(debug_assertions)]
remaining: original.to_string(),
remaining: original.to_owned(),
}
}