minor fixes

This commit is contained in:
Ilya Kantor 2020-06-01 09:47:07 +03:00
parent 9cb597e229
commit ab93cee5b9

View file

@ -145,7 +145,7 @@ let message = "This";
// repeated 'let' leads to an error // repeated 'let' leads to an error
let message = "That"; // SyntaxError: 'message' has already been declared let message = "That"; // SyntaxError: 'message' has already been declared
``` ```
So, we declare a variable once, and then should refer to it without `let`. So, we declare a should variable once, and then refer to it without `let`.
```` ````
```smart header="Functional languages" ```smart header="Functional languages"