rename local vars

This commit is contained in:
yggverse 2025-08-03 15:11:23 +03:00
parent 736f6fac98
commit 559eb02c75

View file

@ -191,9 +191,9 @@ async fn main() -> Result<()> {
Some(
images
.into_iter()
.map(|i| Image {
alt: i.to_str().map(|p| p.to_string()),
bytes: preload.bytes(&i).unwrap(),
.map(|p| Image {
alt: p.to_str().map(|s| s.to_string()),
bytes: preload.bytes(&p).unwrap(),
})
.collect(),
)