From 2b4006747cc441d43e0b1facf90d9a826d32393f Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Thu, 21 May 2020 18:53:35 +0300 Subject: [PATCH] Update juxt.md --- snippets/juxt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/juxt.md b/snippets/juxt.md index 427a64bf8..4ea85eb95 100644 --- a/snippets/juxt.md +++ b/snippets/juxt.md @@ -17,10 +17,10 @@ juxt( x => x + 1, x => x - 1, x => x * 10 -)(1, 2, 3) // [[2,3,4],[0,1,2],[10,20,30]] +)(1, 2, 3); // [[2,3,4],[0,1,2],[10,20,30]] juxt( s => s.length, s => s.split(" ").join("-") -)("30 seconds of code") // [[18],['30-seconds-of-code']] +)("30 seconds of code"); // [[18],['30-seconds-of-code']] ```