about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2019-10-01 12:51:15 -0300
committerGitHub <noreply@github.com>2019-10-01 12:51:15 -0300
commit6acdea433647b93b91ab9075c1be8ee869d20bbc (patch)
treef11651e40ceb0a9028793eecf0ad292b5a44070c
parent702b45e409495a41afcccbe87a251a692b0cefab (diff)
downloadrust-6acdea433647b93b91ab9075c1be8ee869d20bbc.tar.gz
rust-6acdea433647b93b91ab9075c1be8ee869d20bbc.zip
Make comment about dummy type a bit more clear
-rw-r--r--src/librustc/ty/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/ty/mod.rs b/src/librustc/ty/mod.rs
index 4b9117f71be..c0ec2b1cd5a 100644
--- a/src/librustc/ty/mod.rs
+++ b/src/librustc/ty/mod.rs
@@ -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;
 }