Update ch05-00-structs.md

This commit is contained in:
usernameisnull 2017-04-27 01:34:21 +08:00 committed by Vincent Song
parent 49b2fe1d53
commit 433518c660

View File

@ -83,7 +83,7 @@ error[E0106]: missing lifetime specifier
| ^ expected lifetime parameter
```
第十章会讲到如何修复这个问题以便在结构体中储存引用,不过现在,通过通过从像`&str`这样的引用切换到像`String`这类拥有所有权的类型来修改修改这个错误。
第十章会讲到如何修复这个问题以便在结构体中储存引用,不过现在,通过从像`&str`这样的引用切换到像`String`这类拥有所有权的类型来修改修改这个错误。
## 一个示例程序