Skip to content

Commit 7705287

Browse files
committed
chore(promise-all): Promise.all の概説の不自然な文章を修正
1 parent 8252f89 commit 7705287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Ch2_HowToWrite/promise-all.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
先ほどの例の `getURL` はXHRによる通信を抽象化したpromiseオブジェクトを返しています。
1010
`Promise.all` に通信を抽象化したpromiseオブジェクトの配列を渡すことで、
11-
全ての通信が完了(FulFilledまたRejected)した時に、次の `.then` が呼び出すこと事が出来ます
11+
全ての通信が完了(FulFilledまたRejected)した時に、次の `.then` を呼び出すことが出来ます
1212

1313
[role="executable"]
1414
[source,javascript]
@@ -86,4 +86,4 @@ var promises = [
8686
全て完了するまで225ms程度かかる計算になります。
8787
8888
実際にPromiseを逐次的に処理したいケースについては第4章の<<promise-sequence, Promiseによる逐次処理>>を参照して下さい。
89-
====
89+
====

0 commit comments

Comments
 (0)