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 1ed8bc7 commit 0b160baCopy full SHA for 0b160ba
src/ParsePromise.js
@@ -317,8 +317,9 @@ export default class ParsePromise {
317
/**
318
* Returns a new promise that is fulfilled when all of the input promises
319
* are resolved. If any promise in the list fails, then the returned promise
320
- * will fail with the last error. If they all succeed, then the returned
321
- * promise will succeed, with the results being the results of all the input
+ * will be rejected with an array containing the error from each promise.
+ * If they all succeed, then the returned promise will succeed, with the
322
+ * results being the results of all the input
323
* promises. For example: <pre>
324
* var p1 = Parse.Promise.as(1);
325
* var p2 = Parse.Promise.as(2);
0 commit comments