1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-29 13:52:22 +00:00

docs(async): fix typo

This commit is contained in:
ruanyf 2020-09-15 20:23:25 +08:00
parent 8a5b57058d
commit 10defdbcac

View File

@ -184,8 +184,8 @@ async function f() {
} }
f().then( f().then(
v => console.log(resolve,v), v => console.log('resolve', v),
e => console.log('reject',e) e => console.log('reject', e)
) )
//reject Error: 出错了 //reject Error: 出错了
``` ```