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:33 +0800
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-10-24 23:22:17 -0500
commit730d1a60d61a8209118154d12c51f603dc43a08a (patch)
tree97582a2134abd24031f6bd4df0dfab69bd9ff12d /src/doc/rustc-dev-guide
parent8acc12f57cb52c20a053cbf31987fc717943a537 (diff)
downloadrust-730d1a60d61a8209118154d12c51f603dc43a08a.tar.gz
rust-730d1a60d61a8209118154d12c51f603dc43a08a.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 0484b14d65b..95c2bc80444 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
@@ -197,7 +197,7 @@ fn bar<'a, T>(t: &'a T) {
 ```
 
 Here, the name `'b` is not part of the root universe. Instead, when we
-"enter" into this `for<'b>` (e.g., by replace it with a placeholder), we will create
+"enter" into this `for<'b>` (e.g., by replacing it with a placeholder), we will create
 a child universe of the root, let's call it U1:
 
 ```text