From bdf79e72c46443addfb516e3bee5dd3cc8cd302b Mon Sep 17 00:00:00 2001 From: Rinne Date: Tue, 11 Oct 2022 19:44:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AD=97=E7=AC=A6=E4=B8=B2?= =?UTF-8?q?=E7=BB=83=E4=B9=A0=E4=B8=AD=E7=9A=84=E5=A4=B1=E6=95=88=E9=93=BE?= =?UTF-8?q?=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-CN/src/collections/String.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-CN/src/collections/String.md b/zh-CN/src/collections/String.md index 20e254e..151b192 100644 --- a/zh-CN/src/collections/String.md +++ b/zh-CN/src/collections/String.md @@ -30,7 +30,7 @@ fn move_ownership(s: String) { 而 `&str` 是[切片引用](https://course.rs/confonding/slice.html)类型( `&[u8]` ),指向一个合法的 UTF-8 字符序列,总之,`&str` 和 `String` 的关系类似于 `&[T]` 和 `Vec` 。 -如果大家想了解更多,可以看看[易混淆概念解析 - &str 和 String](https://course.rs/confonding/string.html)。 +如果大家想了解更多,可以看看[易混淆概念解析 - &str 和 String](https://course.rs/difficulties/string.html)。 2. 🌟🌟 @@ -204,4 +204,4 @@ fn main() { ### 常用方法(TODO) 关于 String 的常用方法练习,可以查看[这里](../std/String.md). -> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/String.md)找到答案(在 solutions 路径下) \ No newline at end of file +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/String.md)找到答案(在 solutions 路径下)