From a284b296fcc65a459212fb9fd2e088a4b36f552f Mon Sep 17 00:00:00 2001 From: Nelson Sandoval <26394738+techednelson@users.noreply.github.com> Date: Mon, 28 Jan 2019 03:11:49 +0200 Subject: [PATCH] fix: Capitalize test text for Cascading CSS variables (#34910) --- .../basic-css/cascading-css-variables.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 7f81832a17..bdd33a47e8 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.'); ```