From c108edfac7e00f38f7541e1cfba35bd78a5fcb66 Mon Sep 17 00:00:00 2001 From: evuez Date: Wed, 21 Feb 2018 10:16:47 +0100 Subject: [PATCH] Rephrase sentence about lifetime param name Fixes #1144 --- second-edition/nostarch/chapter10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/nostarch/chapter10.md b/second-edition/nostarch/chapter10.md index c1ac9544e..a511cfc82 100644 --- a/second-edition/nostarch/chapter10.md +++ b/second-edition/nostarch/chapter10.md @@ -1345,7 +1345,7 @@ annotations do is relate the lifetimes of multiple references to each other. Lifetime annotations have a slightly unusual syntax: the names of lifetime parameters must start with an apostrophe `'`. The names of lifetime parameters are usually all lowercase, and like generic types, their names are usually very -short. `'a` is the name most people use as a default. Lifetime parameter +short. `'a` is the name most people use. Lifetime parameter annotations go after the `&` of a reference, and a space separates the lifetime annotation from the reference’s type.