about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2018-10-25 11:33:44 +0800
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-10-24 23:22:17 -0500
commit57924519020ccd8a7acf299937d110308bee9485 (patch)
tree33c76d525b5072e6e5048ad0bce3c1135329fd6f /src/doc/rustc-dev-guide
parente82926334931c761894c7300a8b33cf698c96fbf (diff)
downloadrust-57924519020ccd8a7acf299937d110308bee9485.tar.gz
rust-57924519020ccd8a7acf299937d110308bee9485.zip
Update src/traits/caching.md
Co-Authored-By: csmoe <csmoe@msn.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/traits/caching.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/traits/caching.md b/src/doc/rustc-dev-guide/src/traits/caching.md
index 7978306d199..c963aafc4a9 100644
--- a/src/doc/rustc-dev-guide/src/traits/caching.md
+++ b/src/doc/rustc-dev-guide/src/traits/caching.md
@@ -37,7 +37,7 @@ we would [confirm] `ImplCandidate(22)`, which would (as a side-effect) unify
 [confirm]: ./resolution.html#confirmation
 
 Now, at some later time, we might come along and see a `usize :
-Foo<$u>`. When placeholder, this would yield `usize : Foo<$0>`, just as
+Foo<$u>`. When replaced with a placeholder, this would yield `usize : Foo<$0>`, just as
 before, and hence the cache lookup would succeed, yielding
 `ImplCandidate(22)`. We would confirm `ImplCandidate(22)` which would
 (as a side-effect) unify `$u` with `isize`.