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.
This commit is contained in:
Logan-Schelly 2020-05-21 14:10:21 -06:00 committed by GitHub
parent 4267d22a80
commit 77cb06d6ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ let usersById = groupById(users);
// after the call we should have: // after the call we should have:
usersById = { 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}, ann: {id: 'ann', name: "Ann Smith", age: 24},
pete: {id: 'pete', name: "Pete Peterson", age: 31}, pete: {id: 'pete', name: "Pete Peterson", age: 31},
} }