Skip to content

Commit 62ff8f3

Browse files
committed
minor: correct close to closure
1 parent db9fd37 commit 62ff8f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/hir-ty/src/mir/eval.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ impl MirEvalError {
359359
func
360360
)?;
361361
}
362-
Either::Right(close) => {
363-
writeln!(f, "In {:?}", close)?;
362+
Either::Right(closure) => {
363+
writeln!(f, "In {:?}", closure)?;
364364
}
365365
}
366366
let source_map = db.body_with_source_map(*def).1;

0 commit comments

Comments
 (0)