From 2ee7c05544ea208acfac0730ece64823535f152d Mon Sep 17 00:00:00 2001 From: Lakshay Goyal Date: Fri, 2 Jan 2026 16:49:13 +0530 Subject: [PATCH] fix(curriculum): correct attribute mismatch in step 109 of City Skyline (#64966) --- .../blocks/workshop-city-skyline/5d822fd413a79914d39e9938.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e9938.md b/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e9938.md index b1904ae26a1..59825934c39 100644 --- a/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e9938.md +++ b/curriculum/challenges/english/blocks/workshop-city-skyline/5d822fd413a79914d39e9938.md @@ -32,7 +32,7 @@ assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radi You should give the `radial-gradient` a third color of `#bbeeff` at `100%`. ```js -assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radial-gradient\(rgb\(255, 207, 51\)( 0%)?, rgb\(255, 207, 51\) 20%, rgb\(255, 255, 102\) 21%, rgb\(187, 238, 255\) 100%\)/); +assert.match(new __helpers.CSSHelp(document).getStyle(".sky")?.background, /radial-gradient\(rgb\(255, 207, 51\)( 0%)?, rgb\(255, 207, 51\) 20%, rgb\(255, 255, 102\) 21%, rgb\(187, 238, 255\)( 100%)?\)/); ``` # --seed--