From 7409ffd17e111bf0265b7a203642dfd98c57d24b Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 4 Dec 2017 10:42:46 -0500 Subject: [PATCH] outlives/env: Fix comment that lost surrounding context. --- src/librustc/infer/outlives/env.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/librustc/infer/outlives/env.rs b/src/librustc/infer/outlives/env.rs index f7d94b47d7d..85e269b6972 100644 --- a/src/librustc/infer/outlives/env.rs +++ b/src/librustc/infer/outlives/env.rs @@ -162,9 +162,8 @@ impl<'a, 'gcx: 'tcx, 'tcx: 'a> OutlivesEnvironment<'tcx> { ) where I: IntoIterator>, { - // But also record other relationships, such as `T:'x`, - // that don't go into the free-region-map but which we use - // here. + // Record relationships such as `T:'x` that don't go into the + // free-region-map but which we use here. for outlives_bound in outlives_bounds { debug!("add_outlives_bounds: outlives_bound={:?}", outlives_bound); match outlives_bound {