Fix translation (#175)

```
That’s not to say that block-scoped variable can never be declared with a function-scoped variable. The block-scoped variable just needs to be declared within a distinctly different block.
```
This commit is contained in:
minchao 2017-06-12 19:03:18 +08:00 committed by Patrick Zhong
parent 16e2a02594
commit 317166f879

View File

@ -291,8 +291,8 @@ function g() {
}
```
并不是说块级作用域变量不能在函数作用域内声明。
而是块级作用域变量需要在不用的块里声明。
并不是说块级作用域变量不能用函数作用域变量来声明。
而是块级作用域变量需要在明显不同的块里声明。
```ts
function f(condition, x) {