Skip to content

Commit 1816ede

Browse files
committed
be specific about what kind of normalization we mean
1 parent 3d826e5 commit 1816ede

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/librustc_mir/borrow_check/nll/universal_regions.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,14 @@ pub struct UniversalRegions<'tcx> {
7171

7272
/// The return type of this function, with all regions replaced by
7373
/// their universal `RegionVid` equivalents. This type is **NOT
74-
/// NORMALIZED**.
74+
/// NORMALIZED** (i.e., it contains unnormalized associated type
75+
/// projections).
7576
pub output_ty: Ty<'tcx>,
7677

7778
/// The fully liberated input types of this function, with all
7879
/// regions replaced by their universal `RegionVid` equivalents.
79-
/// This type is **NOT NORMALIZED**.
80+
/// This type is **NOT NORMALIZED** (i.e., it contains
81+
/// unnormalized associated type projections).
8082
pub input_tys: &'tcx [Ty<'tcx>],
8183

8284
/// Each RBP `('a, GK)` indicates that `GK: 'a` can be assumed to

0 commit comments

Comments
 (0)