Function curly brackets weong example fix

The opening bracket should have been put on the next line to show an example, which might lead to an error
This commit is contained in:
Rostislav Bogorad
2021-04-26 23:13:30 +03:00
committed by GitHub
parent a340bce5c2
commit e09d9f85b0

View File

@ -272,7 +272,8 @@ function someFunction() {
}
// Избегайте
function someFunction() {
function someFunction()
{
// code block
}
```