From ce3ccc47d41774a284cc375d0aa3207e2ef92e09 Mon Sep 17 00:00:00 2001 From: Ilenia Date: Sat, 12 Jun 2021 20:53:45 +0200 Subject: [PATCH] fix(curriculum): remove unnecessary backticks (#42458) --- .../basic-javascript/global-vs.-local-scope-in-functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/global-vs.-local-scope-in-functions.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/global-vs.-local-scope-in-functions.md index e1743e39af..a3ea78542a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/global-vs.-local-scope-in-functions.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/global-vs.-local-scope-in-functions.md @@ -9,7 +9,7 @@ dashedName: global-vs--local-scope-in-functions # --description-- -It is possible to have both local and global variables with the same name. When you do this, the `local` variable takes precedence over the `global` variable. +It is possible to have both local and global variables with the same name. When you do this, the local variable takes precedence over the global variable. In this example: @@ -21,7 +21,7 @@ function myFun() { } ``` -The function `myFun` will return the string `Head` because the `local` version of the variable is present. +The function `myFun` will return the string `Head` because the local version of the variable is present. # --instructions--