From 88119659c6a3e99cacd424fafe199fd24fd97247 Mon Sep 17 00:00:00 2001 From: Trevor McCauley <3536716+senocular@users.noreply.github.com> Date: Mon, 18 Jul 2022 06:12:45 -0400 Subject: [PATCH] fix: Explainer method typo asyncFrom -> fromAsync --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a9987d..b155b0d 100644 --- a/README.md +++ b/README.md @@ -413,7 +413,7 @@ Iterator(iterable).toArray() Array.from(iterable, mapfn) Iterator(iterable).map(mapfn).toArray() -// Array.asyncFrom +// Array.fromAsync Array.fromAsync(asyncIterable) AsyncIterator(asyncIterable).toArray()