Make comment about dummy type a bit more clear

This commit is contained in:
Santiago Pastorino 2019-10-01 12:51:15 -03:00 committed by GitHub
parent 702b45e409
commit 6acdea4336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -600,7 +600,8 @@ impl<'tcx> rustc_serialize::UseSpecializedDecodable for Ty<'tcx> {}
pub type CanonicalTy<'tcx> = Canonical<'tcx, Ty<'tcx>>; pub type CanonicalTy<'tcx> = Canonical<'tcx, Ty<'tcx>>;
extern { extern {
/// A dummy type used to force `List` to by unsized without requiring fat pointers. /// A dummy type used to force List to be unsized while not requiring references to it be wide
/// pointers.
type OpaqueListContents; type OpaqueListContents;
} }