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:30 +0800
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-10-24 23:22:17 -0500
commit8acc12f57cb52c20a053cbf31987fc717943a537 (patch)
tree5009d55b2de9ccb86781e2c1d5a8ac26252285b7 /src/doc/rustc-dev-guide
parent4f32b55424044ceca54510e8d3102e0c6c9a7146 (diff)
downloadrust-8acc12f57cb52c20a053cbf31987fc717943a537.tar.gz
rust-8acc12f57cb52c20a053cbf31987fc717943a537.zip
Update src/borrow_check/region_inference.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/borrow_check/region_inference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/borrow_check/region_inference.md b/src/doc/rustc-dev-guide/src/borrow_check/region_inference.md
index c754a5000e1..0484b14d65b 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check/region_inference.md
+++ b/src/doc/rustc-dev-guide/src/borrow_check/region_inference.md
@@ -129,7 +129,7 @@ the type of `foo`   the type `bar` expects
 ```
 
 We handle this sort of subtyping by taking the variables that are
-bound in the supertype and replace them with
+bound in the supertype and replacing them with
 [universally quantified](../appendix/background.html#quantified)
 representatives, written like `!1`. We call these regions "placeholder
 regions" – they represent, basically, "some unknown region".