From 095cf332fe776e89deb2caf950fe1cc0522eec5d Mon Sep 17 00:00:00 2001 From: Alan Luo Date: Sun, 5 Jun 2022 09:58:24 -0700 Subject: [PATCH] fix(curriculum): fix mismatch description (#46342) --- .../615f42a021625f656101ef93.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f42a021625f656101ef93.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f42a021625f656101ef93.md index 3e1e57a9a41..a2b26f92daa 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f42a021625f656101ef93.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f42a021625f656101ef93.md @@ -25,7 +25,7 @@ Your new `span` element should have the `class` attribute set to `right`. assert(document.querySelector('span')?.classList?.contains('right')); ``` -Your `.right` element should have the text `2/3 cup (55g)`. +Your `span` element should have the text `2/3 cup (55g)`. ```js assert(document.querySelector('span')?.textContent === '2/3 cup (55g)');