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 08abe63 commit 8dcd276Copy full SHA for 8dcd276
src/ParsePromise.js
@@ -333,10 +333,8 @@ export default class ParsePromise {
333
*
334
* The input promises can also be specified as an array: <pre>
335
* var promises = [p1, p2, p3];
336
- * Parse.Promise.when(promises).then(function(r1, r2, r3) {
337
- * console.log(r1); // prints 1
338
- * console.log(r2); // prints 2
339
- * console.log(r3); // prints 3
+ * Parse.Promise.when(promises).then(function(results) {
+ * console.log(results); // prints [1,2,3]
340
* });
341
* </pre>
342
* @method when
0 commit comments