From 77cb06d6ac304fc386a45afb06b0702691da78f5 Mon Sep 17 00:00:00 2001 From: Logan-Schelly <56139290+Logan-Schelly@users.noreply.github.com> Date: Thu, 21 May 2020 14:10:21 -0600 Subject: [PATCH] Fixed a comment, to reflect changes in the task. The task has a test with a missing comma. That same comma is missing in the comment, so I'm putting it here as well. --- 1-js/05-data-types/05-array-methods/12-reduce-object/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/12-reduce-object/task.md b/1-js/05-data-types/05-array-methods/12-reduce-object/task.md index 1e402ec0..d3c8f8eb 100644 --- a/1-js/05-data-types/05-array-methods/12-reduce-object/task.md +++ b/1-js/05-data-types/05-array-methods/12-reduce-object/task.md @@ -23,7 +23,7 @@ let usersById = groupById(users); // after the call we should have: usersById = { - john: {id: 'john', name: "John Smith", age: 20} + john: {id: 'john', name: "John Smith", age: 20}, ann: {id: 'ann', name: "Ann Smith", age: 24}, pete: {id: 'pete', name: "Pete Peterson", age: 31}, }