minor fixes

This commit is contained in:
Ilya Kantor 2020-06-01 09:55:46 +03:00
parent 5cd131403e
commit 1b2a192f28

View file

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