From 41b35e1a7a67291b96a026cac513b3ecef03e775 Mon Sep 17 00:00:00 2001 From: Luigi Russo Date: Thu, 17 Nov 2022 16:46:38 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f392fa..7e1f0de 100644 --- a/README.md +++ b/README.md @@ -382,7 +382,7 @@ With the union of concurrency and iteration, the sky is the limit. let every = fn(arr, check) { let passed = true; map(arr, fn(e) { - switch check(e) { case true: passed = false; } } + switch check(e) { case false: passed = false; } } ) return passed; };