From d11d20a129085b94c7ba1864275889f8f63d90be Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 16 Jan 2018 16:16:57 +0200 Subject: [PATCH] Fixed builder --- scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index 83c16d0b3..c3fa534bd 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -44,7 +44,7 @@ These snippets, while useful and interesting, didn\'t quite make it into the rep ## Table of Contents ` - for(const snippet of Object.entries(snippets).filter(s[0] !== 'README.md')) + for(const snippet of Object.entries(snippets).filter(s => s[0] !== 'README.md')) output += `* [\`${snippet[0].slice(0,-3)}\`](#${snippet[0].toLowerCase().slice(0,-3)})\n`; output += '\n---\n'; for(const snippet of Object.entries(snippets)){