From 55237aeeb1b97cdaaa1efd2f5fb26bb2bb2e1c4d Mon Sep 17 00:00:00 2001 From: Zheng Ping Date: Wed, 2 Aug 2017 10:24:36 +0800 Subject: [PATCH] Update ch19-02-advanced-lifetimes.md --- src/ch19-02-advanced-lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch19-02-advanced-lifetimes.md b/src/ch19-02-advanced-lifetimes.md index fb29d36..77a9d9e 100644 --- a/src/ch19-02-advanced-lifetimes.md +++ b/src/ch19-02-advanced-lifetimes.md @@ -218,7 +218,7 @@ note: ...so that the reference type `&'a T` does not outlive the data it points 因为 `T` 可以是任意类型,`T` 自身也可能是一个引用,或者是一个存放了一个或多个引用的类型,而他们各自可能有着不同的生命周期。Rust 不能确认 `T` 会与 `'a` 存活的一样久。 -幸运的是,Rust 提供了这个情况下如何指定生命周期 bound 的有用建议: +幸运的是,Rust 在这种情况下给出了如何指定生命周期 bound 的好建议: ``` consider adding an explicit lifetime bound `T: 'a` so that the reference type