From 019108a569d2d81ec6e6d06b34cc48bca1910255 Mon Sep 17 00:00:00 2001 From: Alex Newton Date: Tue, 26 Jul 2022 16:18:49 +0800 Subject: [PATCH] =?UTF-8?q?14=E7=AB=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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/pattern-match/patterns.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/zh-CN/src/crate-module/crate.md b/zh-CN/src/crate-module/crate.md index 7bcfab2..1c6930b 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/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 +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/crate.md)找到答案(在 solutions 路径下) \ 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 06f14b5..608097a 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/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 +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/module.md)找到答案(在 solutions 路径下) \ 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 e4b6cf8..59f396c 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/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 +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/crate-module/use-pub.md)找到答案(在 solutions 路径下) \ No newline at end of file diff --git a/zh-CN/src/pattern-match/patterns.md b/zh-CN/src/pattern-match/patterns.md index 8df1658..8e8f49b 100644 --- a/zh-CN/src/pattern-match/patterns.md +++ b/zh-CN/src/pattern-match/patterns.md @@ -110,6 +110,6 @@ fn main() { &mut value => value.push_str(" world!") } } -```` +``` > 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/pattern-match/patterns.md)找到答案(在 solutions 路径下) \ No newline at end of file