]> git.lizzy.rs Git - rust.git/commitdiff
Use a more common word than "elide", e.g. omit
authorChris C Cerami <chrisccerami@users.noreply.github.com>
Mon, 5 Oct 2015 02:48:07 +0000 (22:48 -0400)
committerChris C Cerami <chrisccerami@gmail.com>
Mon, 5 Oct 2015 15:29:55 +0000 (11:29 -0400)
src/doc/trpl/lifetimes.md

index fb2fc83e0626124ee4ccda190a12812c6f2817ad..cd4ef6d04d6d326bf18aa413605184418b8fcd2d 100644 (file)
@@ -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