We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8252f89 commit 7705287Copy full SHA for 7705287
Ch2_HowToWrite/promise-all.adoc
@@ -8,7 +8,7 @@
8
9
先ほどの例の `getURL` はXHRによる通信を抽象化したpromiseオブジェクトを返しています。
10
`Promise.all` に通信を抽象化したpromiseオブジェクトの配列を渡すことで、
11
-全ての通信が完了(FulFilledまたRejected)した時に、次の `.then` が呼び出すこと事が出来ます。
+全ての通信が完了(FulFilledまたRejected)した時に、次の `.then` を呼び出すことが出来ます。
12
13
[role="executable"]
14
[source,javascript]
@@ -86,4 +86,4 @@ var promises = [
86
全て完了するまで225ms程度かかる計算になります。
87
88
実際にPromiseを逐次的に処理したいケースについては第4章の<<promise-sequence, Promiseによる逐次処理>>を参照して下さい。
89
-====
+====
0 commit comments