From 690d5531a047a2ef47bb987c72d16e50b206574a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B7=A6=E4=BC=A6?= Date: Wed, 13 Apr 2016 11:23:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E5=A4=84=E5=AE=B9?= =?UTF-8?q?=E6=98=93=E4=BA=A7=E7=94=9F=E8=AF=AF=E8=A7=A3=E7=9A=84=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/promise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/promise.md b/docs/promise.md index 3659ba6..053be71 100644 --- a/docs/promise.md +++ b/docs/promise.md @@ -45,7 +45,7 @@ Promise实例生成以后,可以用then方法分别指定Resolved状态和Reje ```javascript promise.then(function(value) { // success -}, function(value) { +}, function(error) { // failure }); ```