mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
minor: correct close
to closure
This commit is contained in:
parent
db9fd370ee
commit
62ff8f33d4
1 changed files with 2 additions and 2 deletions
|
@ -359,8 +359,8 @@ impl MirEvalError {
|
||||||
func
|
func
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
Either::Right(close) => {
|
Either::Right(closure) => {
|
||||||
writeln!(f, "In {:?}", close)?;
|
writeln!(f, "In {:?}", closure)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let source_map = db.body_with_source_map(*def).1;
|
let source_map = db.body_with_source_map(*def).1;
|
||||||
|
|
Loading…
Reference in a new issue