diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md index 7f81832a170..bdd33a47e86 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md @@ -22,8 +22,8 @@ Define a variable named --penguin-belly in the :root s ```yml tests: - - text: declare the --penguin-belly variable in the :root and assign it to pink. - testString: assert(code.match(/:root\s*?{[\s\S]*--penguin-belly\s*?:\s*?pink\s*?;[\s\S]*}/gi), 'declare the --penguin-belly variable in the :root and assign it to pink.'); + - text: Declare the --penguin-belly variable in the :root and assign it to pink. + testString: assert(code.match(/:root\s*?{[\s\S]*--penguin-belly\s*?:\s*?pink\s*?;[\s\S]*}/gi), 'Declare the --penguin-belly variable in the :root and assign it to pink.'); ```