From 222a0cafca651e0d0d4716530be015ddaab3a8b6 Mon Sep 17 00:00:00 2001 From: zrll_ <46812903+zrll12@users.noreply.github.com> Date: Thu, 19 Sep 2024 20:14:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=87=E7=82=B9=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> --- src/basic/match-pattern/pattern-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/match-pattern/pattern-match.md b/src/basic/match-pattern/pattern-match.md index a7a9291d..f0de6bb9 100644 --- a/src/basic/match-pattern/pattern-match.md +++ b/src/basic/match-pattern/pattern-match.md @@ -205,5 +205,5 @@ let Some(x) = some_option_value else { return; } println!("{}", x); ``` -在上面的例子中,`if let`写法里的`x`只能在`if`分支内使用,而`let-else`写法里的`x`则可以在`let`之外使用。 +在上面的例子中,`if let` 写法里的 `x` 只能在 `if` 分支内使用,而 `let-else` 写法里的 `x` 则可以在 `let` 之外使用。