about summary refs log tree commit diff
path: root/src/librustc/ty
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-10-02 16:50:20 -0400
committerNiko Matsakis <niko@alum.mit.edu>2018-10-04 11:02:40 -0400
commit21aaaac29b5f0d009a0a136bdf3e6534d9f1c846 (patch)
tree729fd197cd5b1195bebb3d35491eba4a2bff4d16 /src/librustc/ty
parentcdb95b0f215fb3590dc86223712b5bbcf126582f (diff)
downloadrust-21aaaac29b5f0d009a0a136bdf3e6534d9f1c846.tar.gz
rust-21aaaac29b5f0d009a0a136bdf3e6534d9f1c846.zip
remove all occurences of `skolemize`
Diffstat (limited to 'src/librustc/ty')
-rw-r--r--src/librustc/ty/sty.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/sty.rs b/src/librustc/ty/sty.rs
index d8dd73da536..6fc144d986e 100644
--- a/src/librustc/ty/sty.rs
+++ b/src/librustc/ty/sty.rs
@@ -743,7 +743,7 @@ impl<'tcx> PolyExistentialTraitRef<'tcx> {
 /// Binder is a binder for higher-ranked lifetimes. It is part of the
 /// compiler's representation for things like `for<'a> Fn(&'a isize)`
 /// (which would be represented by the type `PolyTraitRef ==
-/// Binder<TraitRef>`). Note that when we skolemize, instantiate,
+/// Binder<TraitRef>`). Note that when we instantiate,
 /// erase, or otherwise "discharge" these bound regions, we change the
 /// type from `Binder<T>` to just `T` (see
 /// e.g. `liberate_late_bound_regions`).