From 107190012f551713ab7281fe0aba1e9be6417562 Mon Sep 17 00:00:00 2001 From: linbingquan <695601626@qq.com> Date: Mon, 4 Apr 2022 21:14:02 +0800 Subject: [PATCH] fix match.md --- solutions/pattern-match/match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/pattern-match/match.md b/solutions/pattern-match/match.md index 8910145..148da4e 100644 --- a/solutions/pattern-match/match.md +++ b/solutions/pattern-match/match.md @@ -68,7 +68,7 @@ fn show_message(msg: Message) { assert_eq!(g, 255); assert_eq!(b, 0); } - __ => println!("no data in these variants") + _ => println!("no data in these variants") } } ```