Update src/borrow_check/region_inference.md

Co-Authored-By: csmoe <csmoe@msn.com>
This commit is contained in:
Who? Me?! 2018-10-25 11:33:33 +08:00
parent 52033755c3
commit cb7e82cabd
1 changed files with 1 additions and 1 deletions

View File

@ -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