Skip to content

Commit 647d0b6

Browse files
fix unmatched braces
1 parent 7907385 commit 647d0b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

compiler/rustc_typeck/src/check/upvar.rs

+2
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
488488
/// path_expr_id: hir_id_L4,
489489
/// capture_kind: ByValue
490490
/// },
491+
/// }
491492
/// ```
492493
///
493494
/// After the min capture analysis, we get:
@@ -507,6 +508,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
507508
/// capture_kind: ByValue
508509
/// },
509510
/// ],
511+
/// }
510512
/// ```
511513
fn compute_min_captures(
512514
&self,

0 commit comments

Comments
 (0)