File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/librustc_mir/borrow_check/nll/region_infer Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -507,9 +507,10 @@ impl<'tcx> RegionInferenceContext<'tcx> {
507507 self . inferred_values = Some ( inferred_values) ;
508508 }
509509
510- /// Builds up a map from each region variable X to a vector with the indices of constraints that
511- /// need to be re-evaluated when X changes. These are constraints like Y: X @ P -- so if X
512- /// changed, we may need to grow Y.
510+ /// Builds up a map from each region variable X to a vector with the
511+ /// indices of constraints that need to be re-evaluated when X changes.
512+ /// These are constraints like Y: X @ P -- so if X changed, we may
513+ /// need to grow Y.
513514 fn build_dependency_map ( & self ) -> HashMap < RegionVid , Vec < usize > > {
514515 let mut map = HashMap :: new ( ) ;
515516
You can’t perform that action at this time.
0 commit comments