From cb928b95ccfcde0d7969ccca71b85c4fedfe63ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcio=20=22Alexandrino=22=20S=C3=A1?= <78682655+AlexandrinoMaranhao@users.noreply.github.com> Date: Mon, 16 Sep 2024 07:22:51 -0300 Subject: [PATCH] Minor code type fix in index.md --- .../getting_started_with_the_web/javascript_basics/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/pt-br/learn/getting_started_with_the_web/javascript_basics/index.md b/files/pt-br/learn/getting_started_with_the_web/javascript_basics/index.md index b8c9a0f41e0531..3d063e62a1c2bc 100644 --- a/files/pt-br/learn/getting_started_with_the_web/javascript_basics/index.md +++ b/files/pt-br/learn/getting_started_with_the_web/javascript_basics/index.md @@ -422,7 +422,7 @@ Em seguida, vamos alterar o título da página para uma mensagem de boas-vindas setUserName(); } else { const storedName = localStorage.getItem("name"); - myHeading.textContent = `Mozilla é legal, ${storedName`; + myHeading.textContent = `Mozilla é legal, ${storedName}`; } ```