From e627b5e0ad0efb776921cd38d211b98da523cfee Mon Sep 17 00:00:00 2001 From: casem725 <102886237+casem725@users.noreply.github.com> Date: Fri, 3 Jun 2022 16:35:45 -0400 Subject: [PATCH] Added quotations around 'Question #' (#46302) * Added quotations around 'Question #' * fix: remove double quotes in assert Co-authored-by: Casey Co-authored-by: Bruce B --- .../6145ed1f22caab087630aaad.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md index 76a90a939ed..e04019627cf 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md @@ -7,7 +7,7 @@ dashedName: step-33 # --description-- -To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `Question #`. +To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `"Question #"`. # --hints-- @@ -17,7 +17,7 @@ You should use the `p::before` selector. assert.exists(new __helpers.CSSHelp(document).getStyle('p::before')); ``` -You should give the `p::before` pseudo-element a `content` property of `Question #`. +You should give the `p::before` pseudo-element a `content` property of `"Question #"`. ```js assert.include(new __helpers.CSSHelp(document).getStyle('p::before')?.content, 'Question #');