Skip to content

Commit

Permalink
fix basics declarations typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Daniloff committed Feb 16, 2016
1 parent 78fccd0 commit f9ae634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/en/2016-02-15-basics-declarations.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ console.log('--> 3.1:', `x = ${x}, y = ${y}`)
//--> 3.1: x = 1, y = 2
```

Now we declare both variables through var. Meaning they only live in the context of the closure
Now we declare both variables through var. Meaning they only live in the context of the closure.

```js
;(() => {
Expand Down

0 comments on commit f9ae634

Please sign in to comment.