Rollup merge of #64961 - rust-lang:spastorino-patch-1, r=oli-obk

Make comment about dummy type a bit more clear
This commit is contained in:
Mazdak Farrokhzad 2019-10-02 18:24:36 +02:00 committed by GitHub
commit 475f5d4a5c
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>>;
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;
}