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

Merge pull request #169 from jolyon129/patch-1

修改一处容易产生误解的示例
This commit is contained in:
Ruan YiFeng 2016-05-05 08:05:29 +08:00
commit aea773a435

View File

@ -45,7 +45,7 @@ Promise实例生成以后可以用then方法分别指定Resolved状态和Reje
```javascript
promise.then(function(value) {
// success
}, function(value) {
}, function(error) {
// failure
});
```