From 386d88d4769c60f4070a91289bccf177794ab86f Mon Sep 17 00:00:00 2001 From: Alex Newton Date: Tue, 26 Jul 2022 16:09:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AC=AC11=E7=AB=A0=E7=AD=94?= =?UTF-8?q?=E6=A1=88=E9=93=BE=E6=8E=A5=E4=B8=BA=E4=B8=AD=E6=96=87=EF=BC=8C?= =?UTF-8?q?=E5=B9=B6=E6=A0=87=E8=AE=B0std/String.md=20TODO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-CN/src/collections/String.md | 4 ++-- zh-CN/src/collections/hashmap.md | 2 +- zh-CN/src/collections/vector.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/zh-CN/src/collections/String.md b/zh-CN/src/collections/String.md index 774a5a8..20e254e 100644 --- a/zh-CN/src/collections/String.md +++ b/zh-CN/src/collections/String.md @@ -201,7 +201,7 @@ fn main() { ``` -### 常用方法 +### 常用方法(TODO) 关于 String 的常用方法练习,可以查看[这里](../std/String.md). -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/String.md)(under the solutions path), but only use it when you need it \ No newline at end of file +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/String.md)找到答案(在 solutions 路径下) \ No newline at end of file diff --git a/zh-CN/src/collections/hashmap.md b/zh-CN/src/collections/hashmap.md index 0f9aa79..296103c 100644 --- a/zh-CN/src/collections/hashmap.md +++ b/zh-CN/src/collections/hashmap.md @@ -220,4 +220,4 @@ hash.insert(42, "the answer"); assert_eq!(hash.get(&42), Some(&"the answer")); ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Hashmap.md)(under the solutions path), but only use it when you need it +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Hashmap.md)找到答案(在 solutions 路径下) diff --git a/zh-CN/src/collections/vector.md b/zh-CN/src/collections/vector.md index 691708e..f2a833a 100644 --- a/zh-CN/src/collections/vector.md +++ b/zh-CN/src/collections/vector.md @@ -245,4 +245,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Vector.md)(under the solutions path), but only use it when you need it \ No newline at end of file +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Vector.md)找到答案(在 solutions 路径下) \ No newline at end of file