From 579d5539f8b0d5668e830ed2347e2e0f254e9f84 Mon Sep 17 00:00:00 2001 From: Lenny PENG Date: Sat, 3 Jun 2023 07:40:35 +0800 Subject: [PATCH] Update Ch21 --- src/Ch21_Appendix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ch21_Appendix.md b/src/Ch21_Appendix.md index 12a9ab2..0d07888 100644 --- a/src/Ch21_Appendix.md +++ b/src/Ch21_Appendix.md @@ -232,7 +232,7 @@ fn main() { | `enum ident<...> ...` | 定义出泛型枚举 | | `impl<...> ...` | 定义出泛型实现 | | `for<...> type` | 高阶声明周期边界,higher-ranked lifetime bounds | -| `type` | 其中一个或更多的关联类型有着指定赋值的某种泛型(a generic type where one or more associated types have specific assignments,比如,`Iterator`) +| `type` | 其中一个或更多的关联类型有着指定赋值的某种泛型(a generic type where one or more associated types have specific assignments,比如,`Iterator`) | 下表 B-5 展示了出现在使用特质边界的约束性泛型参数上下文中的一些符号,table B-5 shows symbols that appear in the context of constraining generic type parameters with trait bounds。