From c7a57bbeaa12b1d528be71875dbe1c827f24bba4 Mon Sep 17 00:00:00 2001 From: William Wong Date: Fri, 24 May 2024 04:55:30 -0700 Subject: [PATCH] Verbiage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f472df..4c75134 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Generator has more functionalities than iterator and array. It is not recommende ### When should I use `Iterable`, `IterableIterator` and `Iterator`? -For best compatibility, you should generally follow this API signature: use `Iterable` for inputs, and use `IterableIterator` for outputs. You should rarely use pure `Iterator`. +For best compatibility, you should generally follow this API signature: use `Iterable` for inputs, and use `IterableIterator` for outputs. You should avoid exporting pure `Iterator`. ```ts function transform(iterable: Iterable): IterableIterator;