Skip to content

Commit

Permalink
Fix format error
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Oct 31, 2014
1 parent 93f499b commit bd6fc2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lesson17/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ fs.readFile('sample01.txt','utf8',function(err,data){
## promise基本概念
先学习promise的基本概念。

*promise只有三种状态,未完成,完成(fulfiled)和失败(rejected)。
*promise的状态可以由未完成转换成完成,或者未完成转换成失败。
*promise的状态转换只发生一次
* promise只有三种状态,未完成,完成(fulfiled)和失败(rejected)。
* promise的状态可以由未完成转换成完成,或者未完成转换成失败。
* promise的状态转换只发生一次

promise有一个then方法,then方法可以接受3个函数作为参数。前两个函数对应promise的两种状态fulfiled, rejected的回调函数。第三个函数用于处理进度信息。

Expand Down

0 comments on commit bd6fc2b

Please sign in to comment.