From 288b82e8feeb7da8805272898e1fd38f89eb8107 Mon Sep 17 00:00:00 2001 From: Anmol Sarraf Date: Wed, 21 Jun 2023 03:30:54 +1000 Subject: [PATCH] fix: improvements in the instruction (#50664) Co-authored-by: Anmol Sarraf --- .../sass/use-each-to-map-over-items-in-a-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/03-front-end-development-libraries/sass/use-each-to-map-over-items-in-a-list.md b/curriculum/challenges/english/03-front-end-development-libraries/sass/use-each-to-map-over-items-in-a-list.md index bfdc68db556..689c1e7449e 100644 --- a/curriculum/challenges/english/03-front-end-development-libraries/sass/use-each-to-map-over-items-in-a-list.md +++ b/curriculum/challenges/english/03-front-end-development-libraries/sass/use-each-to-map-over-items-in-a-list.md @@ -44,7 +44,7 @@ Note that the `$key` variable is needed to reference the keys in the map. Otherw # --instructions-- -Write an `@each` directive that goes through a list: `blue, black, red` and assigns each variable to a `.color-bg` class, where the `color` part changes for each item. Each class should set the `background-color` the respective color. +Write an `@each` directive that goes through a list: `blue, black, red` and assigns each variable to a `.color-bg` class, where the `color` part changes for each item to the respective color. Each class should set the `background-color` to the respective color as well. # --hints--