From 43a2de299a5402505f3ba69954a6ad9210e62cb8 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 14 Jun 2022 10:37:01 +0300 Subject: [PATCH] notes... Signed-off-by: Alex A. Naanou --- Promise.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Promise.js b/Promise.js index 6bdc583..ef7332f 100644 --- a/Promise.js +++ b/Promise.js @@ -5,8 +5,7 @@ * Promise.iter(seq) * .iter() * Iterable promise object. -* Similar to Promise.all(..) but adds basic iterator/generator -* API and will resolve the items as they are ready (resolved). +* Similar to Promise.all(..) but adds basic iterator API. * * Promise.interactive(handler) * Interactive promise object. @@ -68,6 +67,7 @@ var object = require('ig-object') // back to the complex IterablePromise... // // XXX how do we handle errors/rejections??? +// ...mostly the current state is OK, but need more testing... // // XXX should these be exported???