From d5d390a4f22b653c466da5e39d542e7b7e858594 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 10 Oct 2020 17:30:47 +0300 Subject: [PATCH] typo... Signed-off-by: Alex A. Naanou --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3222358..7b5f0e0 100644 --- a/README.md +++ b/README.md @@ -327,7 +327,7 @@ This will return `true` if: Iterating over very large `Array` instances in JavaScript can block execution, to avoid this `types.js` implements `.map(..)`/`.filter(..)`/`.reduce(..)` equivalent methods that split the array into chunks and iterate through -them asynchroniosly giving the runtime a chance to run in between. +them asynchronously giving the runtime a chance to run in between. #### `.mapChunks(..)`