]> git.lizzy.rs Git - rust.git/commitdiff
Adjust comment spacing
authorNiko Matsakis <niko@alum.mit.edu>
Sat, 27 Jan 2018 00:58:54 +0000 (19:58 -0500)
committerGitHub <noreply@github.com>
Sat, 27 Jan 2018 00:58:54 +0000 (19:58 -0500)
I suspect the lines would be long for tidy.

src/librustc_mir/borrow_check/nll/region_infer/mod.rs

index f316a8b480db49e050b92519979e9039e99b6310..b9acb837dbaa9676d089b8b0be1f63a28fdf29e7 100644 (file)
@@ -507,9 +507,10 @@ fn propagate_constraints(&mut self, mir: &Mir<'tcx>) {
         self.inferred_values = Some(inferred_values);
     }
 
-    /// Builds up a map from each region variable X to a vector with the indices of constraints that
-    /// need to be re-evaluated when X changes. These are constraints like Y: X @ P -- so if X
-    /// changed, we may need to grow Y.
+    /// Builds up a map from each region variable X to a vector with the
+    /// indices of constraints that need to be re-evaluated when X changes.
+    /// These are constraints like Y: X @ P -- so if X changed, we may
+    /// need to grow Y.
     fn build_dependency_map(&self) -> HashMap<RegionVid, Vec<usize>> {
         let mut map = HashMap::new();