1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-26 03:32:20 +00:00

中文括号改为英文括号

This commit is contained in:
Wei Zhu 2016-01-02 17:52:52 +08:00
parent 1af516535c
commit 1e23c6d888

View File

@ -163,7 +163,7 @@ function* gen(x){
var g = gen(1);
g.next();
g.throw'出错了';
g.throw('出错了');
// 出错了
```