From 4fdc3be6e58aaf32f8c4e86d27177f5a441d80bf Mon Sep 17 00:00:00 2001 From: Michael_Liu Date: Thu, 15 Feb 2024 09:07:24 +0800 Subject: [PATCH] Update ch10-02-traits.md (#149) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 实例 10-5 => 示例 10-5 --- 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 f6d8ce9..340482f 100644 --- a/src/ch10-02-traits.md +++ b/src/ch10-02-traits.md @@ -289,7 +289,7 @@ fn returns_summarizable(switch: bool) -> impl Summary { ### 使用 trait bounds 来修复 `largest` 函数 -现在你知道了如何使用泛型参数 trait bound 来指定所需的行为。让我们回到实例 10-5 修复使用泛型类型参数的 `largest` 函数定义!回顾一下,最后尝试编译代码时出现的错误是: +现在你知道了如何使用泛型参数 trait bound 来指定所需的行为。让我们回到示例 10-5 修复使用泛型类型参数的 `largest` 函数定义!回顾一下,最后尝试编译代码时出现的错误是: ```text error[E0369]: binary operation `>` cannot be applied to type `T`