From 1beecb464a9bfa89bf9de897685be5a6f86e035b Mon Sep 17 00:00:00 2001 From: RelaxCN <64476349+relaxcn@users.noreply.github.com> Date: Mon, 19 Jun 2023 00:44:59 +0800 Subject: [PATCH] fix the Markdown syntax error --- en/src/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/variables.md b/en/src/variables.md index 8bddfd6..527062d 100644 --- a/en/src/variables.md +++ b/en/src/variables.md @@ -58,7 +58,7 @@ fn define_x() { ``` ### Shadowing -You can declare a new variable with the same name as a previous variable, here we can say **the first one is shadowed by the second one. +You can declare a new variable with the same name as a previous variable, here we can say **the first one is shadowed by the second one.** 5. 🌟🌟 ```rust,editable