From 168e004d2841af9a051d7d8566fcdb3e338fd18e Mon Sep 17 00:00:00 2001 From: katopz Date: Tue, 11 Oct 2022 10:11:06 +0700 Subject: [PATCH] fix: wrong ```` --- en/src/pattern-match/patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/pattern-match/patterns.md b/en/src/pattern-match/patterns.md index 71877b1..0f8cb10 100644 --- a/en/src/pattern-match/patterns.md +++ b/en/src/pattern-match/patterns.md @@ -114,6 +114,6 @@ fn main() { &mut value => value.push_str(" world!") } } -```` +``` > You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it