From a9fe8a7e8de9b933d5ff0e6db1c4b0d94b978ea8 Mon Sep 17 00:00:00 2001 From: Kristofer Koishigawa Date: Mon, 20 Dec 2021 16:25:50 +0900 Subject: [PATCH] Update curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md Co-authored-by: Shaun Hamilton --- .../step-010.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md index 4c22a140ed..333be368d0 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-010.md @@ -29,7 +29,7 @@ You should nest your new `div` element within the `div` with the class `containe assert(document.querySelector('.container')?.children[0]?.localName === 'div'); ``` -You should give your new `div` element a class of `container`. +You should give your new `div` element a class of `marker`. ```js const containerChildren = [...document.querySelector('.container')?.children];