Skip to content

Commit a65d99d

Browse files
Milo123459estebank
andauthored
Update type_err_ctxt_ext.rs
Co-authored-by: Esteban Kuber <[email protected]>
1 parent 991bf75 commit a65d99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/type_err_ctxt_ext.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,10 +437,10 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
437437
format!(" in `{t}`"),
438438
format!("within `{t}`, "),
439439
s.map(|s| (format!("within this `{t}`"), s)),
440-
file.and_then(|file| Some(format!(
440+
file.map(|file| format!(
441441
"the full trait has been written to '{}'",
442442
file.display(),
443-
)))
443+
))
444444
)
445445
})
446446
.unwrap_or_default();

0 commit comments

Comments
 (0)