From f91604531c7cc442b86f6d94ef2179f42f68171b Mon Sep 17 00:00:00 2001 From: furtherun Date: Fri, 1 Jul 2022 19:11:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=AD=94=E6=A1=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 | 2 +- zh-CN/src/collections/hashmap.md | 2 +- zh-CN/src/collections/vector.md | 2 +- zh-CN/src/crate-module/crate.md | 2 +- zh-CN/src/crate-module/module.md | 2 +- zh-CN/src/crate-module/use-pub.md | 2 +- zh-CN/src/generics-traits/advanced-traits.md | 2 +- zh-CN/src/generics-traits/trait-object.md | 2 +- zh-CN/src/generics-traits/traits.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/zh-CN/src/collections/String.md b/zh-CN/src/collections/String.md index 3b13e9b..774a5a8 100644 --- a/zh-CN/src/collections/String.md +++ b/zh-CN/src/collections/String.md @@ -204,4 +204,4 @@ fn main() { ### 常用方法 关于 String 的常用方法练习,可以查看[这里](../std/String.md). -> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it \ No newline at end of file +> 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 diff --git a/zh-CN/src/collections/hashmap.md b/zh-CN/src/collections/hashmap.md index ee7fca1..0f9aa79 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)(under the solutions path), but only use it when you need it +> 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 diff --git a/zh-CN/src/collections/vector.md b/zh-CN/src/collections/vector.md index 2cb22d3..691708e 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)(under the solutions path), but only use it when you need it \ No newline at end of file +> 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 diff --git a/zh-CN/src/crate-module/crate.md b/zh-CN/src/crate-module/crate.md index b748db4..7bcfab2 100644 --- a/zh-CN/src/crate-module/crate.md +++ b/zh-CN/src/crate-module/crate.md @@ -108,4 +108,4 @@ edition = "2021" 可以看到,上面的 package 结构非常标准,你可以在很多 Rust 项目中看到该结构的身影。 -> You can find the solutions [here](https://github.com/sunface/rust-by-practice) (under the solutions path), but only use it when you need it :) \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/crate.md) (under the solutions path), but only use it when you need it :) \ No newline at end of file diff --git a/zh-CN/src/crate-module/module.md b/zh-CN/src/crate-module/module.md index 41caa2b..06f14b5 100644 --- a/zh-CN/src/crate-module/module.md +++ b/zh-CN/src/crate-module/module.md @@ -192,4 +192,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice) (under the solutions path), but only use it when you need it :) \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/module.md) (under the solutions path), but only use it when you need it :) \ No newline at end of file diff --git a/zh-CN/src/crate-module/use-pub.md b/zh-CN/src/crate-module/use-pub.md index 065f24c..e4b6cf8 100644 --- a/zh-CN/src/crate-module/use-pub.md +++ b/zh-CN/src/crate-module/use-pub.md @@ -67,4 +67,4 @@ pub mod a { 至此,包与模块章节已经结束,关于 `hello-package` 的完整代码可以在[这里](https://github.com/sunface/rust-by-practice/tree/master/practices/hello-package) 找到. -> You can find the solutions [here](https://github.com/sunface/rust-by-practice) (under the solutions path), but only use it when you need it :) \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/use-pub.md) (under the solutions path), but only use it when you need it :) \ No newline at end of file diff --git a/zh-CN/src/generics-traits/advanced-traits.md b/zh-CN/src/generics-traits/advanced-traits.md index 67daa37..9ca8cca 100644 --- a/zh-CN/src/generics-traits/advanced-traits.md +++ b/zh-CN/src/generics-traits/advanced-traits.md @@ -268,4 +268,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/advanced-trait.md)(under the solutions path), but only use it when you need it :) diff --git a/zh-CN/src/generics-traits/trait-object.md b/zh-CN/src/generics-traits/trait-object.md index affc8d2..53a0b01 100644 --- a/zh-CN/src/generics-traits/trait-object.md +++ b/zh-CN/src/generics-traits/trait-object.md @@ -223,4 +223,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :) \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/trait-object.md)(under the solutions path), but only use it when you need it :) \ No newline at end of file diff --git a/zh-CN/src/generics-traits/traits.md b/zh-CN/src/generics-traits/traits.md index 5b913ca..e43adb0 100644 --- a/zh-CN/src/generics-traits/traits.md +++ b/zh-CN/src/generics-traits/traits.md @@ -467,4 +467,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/traits.md)(under the solutions path), but only use it when you need it :)