From 3cf7f178b73fd6d677953be1576a30ea68d0065b Mon Sep 17 00:00:00 2001 From: Fanyjie Date: Fri, 14 Jan 2022 09:13:24 +0800 Subject: [PATCH] fix typo 3D(x,y,z) --- book/contents/basic/compound-type/struct.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/basic/compound-type/struct.md b/book/contents/basic/compound-type/struct.md index aadabc0b..c2b53807 100644 --- a/book/contents/basic/compound-type/struct.md +++ b/book/contents/basic/compound-type/struct.md @@ -178,7 +178,7 @@ println!("{:?}", user1); let origin = Point(0, 0, 0); ``` -元组结构体在你希望有一个整体名称,但是又不关心里面字段的名称时将非常有用。例如上面的`Point`元组结构体,众所周知3D点是`(x,y,x)`形式的坐标点,因此我们无需再为内部的字段逐一命名为:`x`,`y`,`z`。 +元组结构体在你希望有一个整体名称,但是又不关心里面字段的名称时将非常有用。例如上面的`Point`元组结构体,众所周知3D点是`(x,y,z)`形式的坐标点,因此我们无需再为内部的字段逐一命名为:`x`,`y`,`z`。 ## 元结构体(Unit-like Struct) 还记得之前讲过的基本没啥用的[元类型](../base-type/char-bool.md#元类型)吧? 元结构体就跟它很像,没有任何字段和属性,但是好在,它还挺有用。