Update src/borrow_check/region_inference/member_constraints.md

Co-Authored-By: lqd <remy.rakic+github@gmail.com>
This commit is contained in:
Niko Matsakis 2019-06-24 14:34:32 -04:00 committed by Who? Me?!
parent ae217e5775
commit b71caff442
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
A member constraint `'m member of ['c_1..'c_N]` expresses that the
region `'m` must be *equal* to some **choice regions** `'c_i` (for
some `i`). These constraints cannot be expressed by users, but they
arise from `impl Trait` due to its lifetime capture rules. Consinder a
arise from `impl Trait` due to its lifetime capture rules. Consider a
function such as the following:
```rust