diff --git a/README.md b/README.md index 7236bb2..11b7437 100644 --- a/README.md +++ b/README.md @@ -1485,8 +1485,6 @@ var p = Promise.iter([ .. ]) // ... }) // items reach here as soon as they are returned by the filter stage handler... - // NOTE: the filter handler may return promises, those will not be processed - // until they are resolved... .map(function(e){ // ... }) @@ -1504,6 +1502,12 @@ This approach has a number of advantages: And some disadvantages: - item indexes are unknowable until all the promises resolve. +Calling each of the `` methods will return a new and unresolved +promise, even if the original is resolved. + +If all values are resolved the `` will resolve on the next +execution frame. +