From f0f4e85cb05957e32f2c4e1603b2ea1a60649989 Mon Sep 17 00:00:00 2001 From: letalumil Date: Sun, 15 Feb 2015 04:50:47 +0300 Subject: [PATCH] Fix 'Chunky Monkey' bonfire EntryPoint typo --- seed_data/bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index 869df527a0..9d8bbbbcdf 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -172,7 +172,7 @@ "description": [ "Write a function that splits an array (first argument) into groups the length of size (second argument) and returns them as a multidimensional array." ], - "challengeSeed": "function chunk(arr, size) {\n // Break it up.\r\n return arr;\r\n}\n\nchunk((['a', 'b', 'c', 'd'], 2));", + "challengeSeed": "function chunk(arr, size) {\n // Break it up.\r\n return arr;\r\n}\n\nchunk(['a', 'b', 'c', 'd'], 2);", "tests": [ "assert.deepEqual(chunk(['a', 'b', 'c', 'd'], 2), [['a', 'b'], ['c', 'd']], 'should return chunked arrays');", "assert.deepEqual(chunk([0, 1, 2, 3, 4, 5], 3), [[0, 1, 2], [3, 4, 5]], 'should return chunked arrays');",