From 7d83a6b65dd1bd9677e1bc0e80df0691c7c4c544 Mon Sep 17 00:00:00 2001 From: "Nicholas Carrigan (he/him)" Date: Sat, 3 Apr 2021 14:00:15 -0700 Subject: [PATCH] fix(curriculum): verbiage (#41732) * fix(curriculum): verbiage Modify the wording of the tests in this challenge to avoid having two tests which sound the same. * fix: Shaun's arrays have elements Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> --- .../basic-javascript/manipulating-complex-objects.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects.md index cce77923be..2be10c422a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects.md @@ -59,13 +59,13 @@ Add a new album to the `myMusic` array. Add `artist` and `title` strings, `relea assert(Array.isArray(myMusic)); ``` -`myMusic` should have at least two objects +`myMusic` should have at least two elements ```js assert(myMusic.length > 1); ``` -`myMusic` should contain at least two objects +The elements in the `myMusic` array should be objects ```js myMusic.forEach(object => {assert.typeOf(object, 'object')})