about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2019-06-24 14:33:15 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-06-26 11:05:58 -0500
commit45a55e7c88b5d814e9a5673c2d248fa7920f9cc4 (patch)
tree3a908abbad64f73e2b075bdd60437167c49076c4 /src/doc/rustc-dev-guide
parent36431d5ff651c53957ca367b25b5ea9d59f81332 (diff)
Update src/borrow_check/region_inference/lifetime_parameters.md
Co-Authored-By: lqd <remy.rakic+github@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-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 1a50f45f9fd..798af13378a 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
@@ -103,7 +103,7 @@ rise to an outlives constraint `'a: 'b`. Combined with our default liveness
 constraints we get:
 
 ```
-'a live at {B, end('a)} // B represents the "bunction body"
+'a live at {B, end('a)} // B represents the "function body"
 'b live at {B, end('b)}
 'a: 'b
 ```