From 031d4f0acf21c680f3d3e00874d041d34f536143 Mon Sep 17 00:00:00 2001 From: Spartucus Date: Wed, 22 Nov 2017 21:40:28 +0800 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit change from "与" to "于" --- src/ch10-02-traits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch10-02-traits.md b/src/ch10-02-traits.md index 4a623db..e89ed7e 100644 --- a/src/ch10-02-traits.md +++ b/src/ch10-02-traits.md @@ -70,7 +70,7 @@ impl Summarizable for Tweet { 示例 10-13:在 `NewsArticle` 和 `Tweet` 类型上实现 `Summarizable` trait -在类型上实现 trait 类似与实现与 trait 无关的方法。区别在于 `impl` 关键字之后,我们提供需要实现 trait 的名称,接着是 `for` 和需要实现 trait 的类型的名称。在 `impl` 块中,使用 trait 定义中的方法签名,不过不再后跟分号,而是需要在大括号中编写函数体来为特定类型实现 trait 方法所拥有的行为。 +在类型上实现 trait 类似于实现与 trait 无关的方法。区别在于 `impl` 关键字之后,我们提供需要实现 trait 的名称,接着是 `for` 和需要实现 trait 的类型的名称。在 `impl` 块中,使用 trait 定义中的方法签名,不过不再后跟分号,而是需要在大括号中编写函数体来为特定类型实现 trait 方法所拥有的行为。 一旦实现了 trait,我们就可以用与 `NewsArticle` 和 `Tweet` 实例的非 trait 方法一样的方式调用 trait 方法了: