From 237dd4121157943ed54a2e3f75b5849fadd8c7b4 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 12 Dec 2017 19:48:29 -0500 Subject: [PATCH] correct comment in test --- src/test/compile-fail/mir_check_cast_reify.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/compile-fail/mir_check_cast_reify.rs b/src/test/compile-fail/mir_check_cast_reify.rs index a253243bad7..091e0b71b2d 100644 --- a/src/test/compile-fail/mir_check_cast_reify.rs +++ b/src/test/compile-fail/mir_check_cast_reify.rs @@ -33,7 +33,7 @@ fn bar<'a>(x: &'a u32) -> &'static u32 { // During NLL region analysis, this will get renumbered to `typeof(foo::<'?0>)` // where `'?0` is a new region variable. // - // (Note that if `'a` on `foo` were early-bound, the type would be + // (Note that if `'a` on `foo` were late-bound, the type would be // `typeof(foo)`, which would interact differently with because // the renumbering later.) //