diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index fb2fc83e0626..cd4ef6d04d6d 100644 --- a/src/doc/trpl/lifetimes.md +++ b/src/doc/trpl/lifetimes.md @@ -70,7 +70,7 @@ fn bar<'a>(x: &'a i32) { ``` The `'a` reads ‘the lifetime a’. Technically, every reference has some lifetime -associated with it, but the compiler lets you elide them in common cases. +associated with it, but the compiler lets you omit them in common cases. Before we get to that, though, let’s break the explicit example down: ```rust,ignore