@@ -181,10 +181,10 @@ struct BreakableScope<'tcx> {
181181
182182#[ derive( Debug ) ]
183183struct ConstContinuableScope < ' tcx > {
184- /// The if-then scope or arm scope
184+ /// The if-then scope or arm scope.
185185 region_scope : region:: Scope ,
186186 /// The destination of the loop/block expression itself (i.e., where to put
187- /// the result of a `break` or `return` expression)
187+ /// the result of a `break` or `return` expression).
188188 state_place : Place < ' tcx > ,
189189
190190 arms : Box < [ ArmId ] > ,
@@ -574,7 +574,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
574574 }
575575 }
576576
577- /// Start a const-continuable scope, which tracks where `#[const_continue] break` should
577+ /// Start a const-continuable scope, which tracks where `#[const_continue] break` should
578578 /// branch to.
579579 pub ( crate ) fn in_const_continuable_scope < F > (
580580 & mut self ,
@@ -849,7 +849,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
849849 _ => todo ! ( ) ,
850850 } ;
851851
852- // the PatCtxt is normally used in pattern exhaustiveness checking, but reused here
852+ // The PatCtxt is normally used in pattern exhaustiveness checking, but reused here
853853 // because it performs normalization and const evaluation.
854854 let dropless_arena = rustc_arena:: DroplessArena :: default ( ) ;
855855 let typeck_results = self . tcx . typeck ( self . def_id ) ;
@@ -903,8 +903,6 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
903903
904904 self . cfg . terminate ( imaginary_target, source_info, TerminatorKind :: UnwindResume ) ;
905905
906- // FIXME add to drop tree for loop_head
907-
908906 let region_scope = scope. region_scope ;
909907 let scope_index = self . scopes . scope_index ( region_scope, span) ;
910908 let mut drops = DropTree :: new ( ) ;
0 commit comments