From bd39fe822a4b699ca6592c697594fbf02ae4a5ca Mon Sep 17 00:00:00 2001 From: weibk <79395818+weibk@users.noreply.github.com> Date: Sun, 28 Apr 2024 08:40:23 +0800 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20=E4=BF=AE=E6=94=B9=E9=94=99?= =?UTF-8?q?=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-CN/src/flow-control.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-CN/src/flow-control.md b/zh-CN/src/flow-control.md index ef049ae3f..9348eaa6b 100644 --- a/zh-CN/src/flow-control.md +++ b/zh-CN/src/flow-control.md @@ -175,7 +175,7 @@ fn main() { if count == 3 { println!("three"); - // 跳过当此循环的剩余代码 + // 跳过当次循环的剩余代码 __; } @@ -242,4 +242,4 @@ fn main() { } ``` -> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/flow-control.md)找到答案(在 solutions 路径下) \ No newline at end of file +> 你可以在[这里](https://github.com/sunface/rust-by-practice/blob/master/solutions/flow-control.md)找到答案(在 solutions 路径下) From 980438637b71bc92791c60d0e83d9b343b072f8b Mon Sep 17 00:00:00 2001 From: Sunface Date: Mon, 27 May 2024 14:25:38 +0800 Subject: [PATCH 2/2] Update zh-CN/src/flow-control.md --- zh-CN/src/flow-control.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-CN/src/flow-control.md b/zh-CN/src/flow-control.md index 9348eaa6b..e540bf203 100644 --- a/zh-CN/src/flow-control.md +++ b/zh-CN/src/flow-control.md @@ -175,7 +175,7 @@ fn main() { if count == 3 { println!("three"); - // 跳过当次循环的剩余代码 + // 跳过当前循环的剩余代码 __; }