about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2019-06-24 14:34:40 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-06-26 11:05:58 -0500
commitc6d975df8d9e10bdcebf05cd58b608899fbb3a3e (patch)
treebe2c2ef216b0589c7fe9b97939ba6fadfcb4ae10 /src/doc
parentf6c79d7467dd78e2d019725d009c03d6bbe5f9b5 (diff)
downloadrust-c6d975df8d9e10bdcebf05cd58b608899fbb3a3e.tar.gz
rust-c6d975df8d9e10bdcebf05cd58b608899fbb3a3e.zip
Update src/borrow_check/region_inference/lifetime_parameters.md
Co-Authored-By: lqd <remy.rakic+github@gmail.com>
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/borrow_check/region_inference/lifetime_parameters.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/lifetime_parameters.md b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/lifetime_parameters.md
index aa36d7dbb8f..ecd3a19a5b7 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/lifetime_parameters.md
+++ b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/lifetime_parameters.md
@@ -64,7 +64,7 @@ As noted previously, the value that we infer for each region is a set
 `{E}`. The elements of this set can be points in the control-flow
 graph, but they can also be an element `end('a)` corresponding to each
 universal lifetime `'a`. If the value for some region `R0` includes
-`end('a`), then this implies that R0 must extend until the end of `'a`
+`end('a`), then this implies that `R0` must extend until the end of `'a`
 in the caller.
 
 ## The "value" of a universal region