correct comment in test

This commit is contained in:
Niko Matsakis 2017-12-12 19:48:29 -05:00
parent 51847a1b18
commit 237dd41211

View File

@ -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.)
//