From 5e42cc35489274bd1d7c754e304adb5ecad3aec8 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Thu, 22 Jun 2023 14:47:27 +0200 Subject: [PATCH] Clarify wording in lifetimes.md (#853) --- src/ownership/lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ownership/lifetimes.md b/src/ownership/lifetimes.md index 4fc6da77..606d1116 100644 --- a/src/ownership/lifetimes.md +++ b/src/ownership/lifetimes.md @@ -11,5 +11,5 @@ A borrowed value has a _lifetime_: * Lifetime annotations create constraints; the compiler verifies that there is a valid solution. * Lifetimes for function arguments and return values must be fully specified, - but Rust allows these to be elided in most cases with [a few simple + but Rust allows lifetimes to be elided in most cases with [a few simple rules](https://doc.rust-lang.org/nomicon/lifetime-elision.html).