Merge pull request #284 from rrandom/patch-1

fix typo
This commit is contained in:
KaiserY 2019-01-03 23:41:50 +08:00 committed by GitHub
commit 47abb33345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -345,7 +345,7 @@ fn first_word(s: &str) -> &str {
}
```
<span class="caption">示例 10-27:示例 4-9 定义了一个没有使用生命周期注解的函数,即便其参数和返回值都是引用</span>
<span class="caption">示例 10-26:示例 4-9 定义了一个没有使用生命周期注解的函数,即便其参数和返回值都是引用</span>
这个函数没有生命周期注解却能编译是由于一些历史原因在早期版本pre-1.0)的 Rust 中,这的确是不能编译的。每一个引用都必须有明确的生命周期。那时的函数签名将会写成这样: