From a2efc570a7db2283173978bd48354161c4f9e63e Mon Sep 17 00:00:00 2001 From: Sunface Date: Thu, 5 May 2022 08:33:09 +0800 Subject: [PATCH] Update en/src/pattern-match/match-iflet.md --- en/src/pattern-match/match-iflet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/pattern-match/match-iflet.md b/en/src/pattern-match/match-iflet.md index 767205c..ea68dfd 100644 --- a/en/src/pattern-match/match-iflet.md +++ b/en/src/pattern-match/match-iflet.md @@ -82,7 +82,7 @@ fn show_message(msg: Message) { } ``` -### Matches! +### matches! [`matches!`](https://doc.rust-lang.org/stable/core/macro.matches.html) looks like `match`, but can do something different. 4. 🌟🌟