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( Some(
images images
.into_iter() .into_iter()
.map(|i| Image { .map(|p| Image {
alt: i.to_str().map(|p| p.to_string()), alt: p.to_str().map(|s| s.to_string()),
bytes: preload.bytes(&i).unwrap(), bytes: preload.bytes(&p).unwrap(),
}) })
.collect(), .collect(),
) )