From b34d577ce0f954de200ba24ce87bd658ada225bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Fri, 29 Nov 2019 23:33:58 +0100 Subject: [PATCH] Fix a mistype Reflects the coding style. --- snippets/ary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/ary.md b/snippets/ary.md index 6f988d4d3..63b1c0cd9 100644 --- a/snippets/ary.md +++ b/snippets/ary.md @@ -5,7 +5,7 @@ tags: adapter,function,intermediate Creates a function that accepts up to `n` arguments, ignoring any additional arguments. -Call the provided function, `fn`, with up to `n` arguments, using `Array.prototype.slice(0,n)` and the spread operator (`...`). +Call the provided function, `fn`, with up to `n` arguments, using `Array.prototype.slice(0, n)` and the spread operator (`...`). ```js const ary = (fn, n) => (...args) => fn(...args.slice(0, n));