From cd85e85c3eca821b954d8a703ec46b606d697cdb Mon Sep 17 00:00:00 2001 From: vibemeistert <71913177+vibemeistert@users.noreply.github.com> Date: Fri, 1 Aug 2025 00:57:47 -0700 Subject: [PATCH] fix(curriculum): remove stray backtick from greeting card instructions (#61634) Co-authored-by: Trev Abbott --- .../workshop-greeting-card/6720b7f3155a9278d6b6a8b8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-greeting-card/6720b7f3155a9278d6b6a8b8.md b/curriculum/challenges/english/25-front-end-development/workshop-greeting-card/6720b7f3155a9278d6b6a8b8.md index 901c19a8114..588873cc4c9 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-greeting-card/6720b7f3155a9278d6b6a8b8.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-greeting-card/6720b7f3155a9278d6b6a8b8.md @@ -35,7 +35,7 @@ You should set `padding` to `40px` in the `body` selector. assert.strictEqual(new __helpers.CSSHelp(document).getStyle("body")?.getPropertyValue("padding"), "40px"); ``` -You should set `text-align` to `center` in the `body` selector.` +You should set `text-align` to `center` in the `body` selector. ```js assert.strictEqual(new __helpers.CSSHelp(document).getStyle("body")?.getPropertyValue("text-align"), "center");