From e345cd61f9aba544e61c08343f9e251bf603f8f9 Mon Sep 17 00:00:00 2001 From: lcofjp Date: Wed, 29 Nov 2017 23:24:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=80=E4=BA=9B=E4=B8=8D?= =?UTF-8?q?=E9=80=9A=E9=A1=BA=E7=9A=84=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch05-02-example-structs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch05-02-example-structs.md b/src/ch05-02-example-structs.md index 76f13ca..51f52de 100644 --- a/src/ch05-02-example-structs.md +++ b/src/ch05-02-example-structs.md @@ -71,7 +71,7 @@ fn area(dimensions: (u32, u32)) -> u32 { ### 使用结构体重构:增加更多意义 -现在引入结构体的时候了。我们可以将元组转换为一个有整体名称而且每个部分也有对应名字的数据类型,如示例 5-10 所示: +现在是引入结构体的时候了。我们可以将元组转换为一个有整体名称而且每个部分也有对应名字的数据类型,如示例 5-10 所示: 文件名: src/main.rs @@ -174,7 +174,7 @@ fn main() { 示例 5-12:增加注解来导出 `Debug` trait -此时此刻运行程序,运行这个程序,不会有任何错误并会出现如下输出: +现在我们再运行这个程序时,不会有任何错误并会出现如下输出: ```text rect1 is Rectangle { length: 50, width: 30 }