From f4d63dc697b9314f3a8e4744b07c0dff7f793506 Mon Sep 17 00:00:00 2001 From: zongzi531 Date: Fri, 11 Feb 2022 12:46:49 +0800 Subject: [PATCH] Fix typo in match-pattern/match-if-let.md --- book/contents/basic/match-pattern/match-if-let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/basic/match-pattern/match-if-let.md b/book/contents/basic/match-pattern/match-if-let.md index 25e681ed..aa153707 100644 --- a/book/contents/basic/match-pattern/match-if-let.md +++ b/book/contents/basic/match-pattern/match-if-let.md @@ -40,7 +40,7 @@ match target { 模式2 => { 语句1; 语句2; - 表达式2; + 表达式2 }, _ => 表达式3 }