Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pt-br] Minor code typo fix in pt-br/docs/learn/Getting_started_with_the_web/JavaScript_basics/index.md #23601

Merged
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
}
```

Expand Down