Skip to content

Commit a38d2fe

Browse files
committed
Improve code readability by using for loop
1 parent 3b2c906 commit a38d2fe

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

compiler/stable_mir/src/mir/pretty.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ impl Debug for Place {
2525
pub(crate) fn function_body<W: Write>(writer: &mut W, body: &Body, name: &str) -> io::Result<()> {
2626
write!(writer, "fn {name}(")?;
2727
let mut sep = "";
28-
body.arg_locals().iter().enumerate().try_for_each(|(index, local)| {
28+
for (index, local) in body.arg_locals().iter().enumerate() {
2929
write!(writer, "{}_{}: {}", sep, index + 1, local.ty)?;
3030
sep = ", ";
31-
io::Result::Ok(())
32-
})?;
31+
}
3332
write!(writer, ")")?;
3433

3534
let return_local = body.ret_local();

0 commit comments

Comments
 (0)