chore: fix typos (#1090)

This commit is contained in:
HiiTea
2020-05-01 21:42:58 +08:00
committed by GitHub
parent a6a939f5e0
commit 22717772dd
25 changed files with 42 additions and 42 deletions

View File

@@ -62,7 +62,7 @@ describe('scheduler', () => {
const calls: string[] = []
const job1 = () => {
calls.push('job1')
// job2 will be excuted after job1 at the same tick
// job2 will be executed after job1 at the same tick
queueJob(job2)
}
const job2 = () => {
@@ -123,7 +123,7 @@ describe('scheduler', () => {
const calls: string[] = []
const cb1 = () => {
calls.push('cb1')
// cb2 will be excuted after cb1 at the same tick
// cb2 will be executed after cb1 at the same tick
queuePostFlushCb(cb2)
}
const cb2 = () => {