about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorscalexm <alexandre@scalexm.fr>2018-10-21 18:07:25 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-10-22 12:14:46 -0500
commit76027767ecd05ccdc2b405c0db2e27930835fa51 (patch)
tree2a8dc966c18f45bf18057d5d2e43e5aff99169bb /src/doc
parentcafa8d8198845a88ced9973371ced7aca0118c1d (diff)
downloadrust-76027767ecd05ccdc2b405c0db2e27930835fa51.tar.gz
rust-76027767ecd05ccdc2b405c0db2e27930835fa51.zip
Change wording
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/traits/goals-and-clauses.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/traits/goals-and-clauses.md b/src/doc/rustc-dev-guide/src/traits/goals-and-clauses.md
index fb12c5a41a2..8f1ffa48822 100644
--- a/src/doc/rustc-dev-guide/src/traits/goals-and-clauses.md
+++ b/src/doc/rustc-dev-guide/src/traits/goals-and-clauses.md
@@ -103,7 +103,7 @@ WhereClause = Implemented(TraitRef)
 
 `WhereClause` refers to a `where` clause that a Rust user would actually be able
 to write in a Rust program. This abstraction exists only as a convenience as we
-sometimes want to only coope with domain goals that are effectively writable in
+sometimes want to only deal with domain goals that are effectively writable in
 Rust.
 
 Let's break down each one of these, one-by-one.
@@ -117,8 +117,8 @@ True if the given trait is implemented for the given input types and lifetimes.
 e.g. `ProjectionEq<T as Iterator>::Item = u8`
 
 The given associated type `Projection` is equal to `Type`; this can be proved
-with either normalization or using skolemized types. See [the section
-on associated types](./associated-types.html).
+with either normalization or using placeholder associated types. See
+[the section on associated types](./associated-types.html).
 
 #### Normalize(Projection -> Type)
 e.g. `ProjectionEq<T as Iterator>::Item -> u8`