From 9a4976bd5772e475332acbd243964f7a649493e3 Mon Sep 17 00:00:00 2001 From: ML <25686852+monicaleep@users.noreply.github.com> Date: Sun, 16 Aug 2020 20:33:34 -0500 Subject: [PATCH] fix(curriculum) typo in Create Reusable CSS (#39418) Fixed a typo on the Sass Challenge "Create Reusable CSS with Mixins" where the word "vendor" was spelled incorrectly as "vender" in the test cases. --- .../sass/create-reusable-css-with-mixins.english.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/sass/create-reusable-css-with-mixins.english.md b/curriculum/challenges/english/03-front-end-libraries/sass/create-reusable-css-with-mixins.english.md index d9aa545908..31dc3bdb80 100644 --- a/curriculum/challenges/english/03-front-end-libraries/sass/create-reusable-css-with-mixins.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/sass/create-reusable-css-with-mixins.english.md @@ -55,11 +55,11 @@ Write a mixin for border-radius and give it a $radius tests: - text: Your code should declare a mixin named border-radius which has a parameter named $radius. testString: assert(code.match(/@mixin\s+?border-radius\s*?\(\s*?\$radius\s*?\)\s*?{/gi)); - - text: Your code should include the -webkit-border-radius vender prefix that uses the $radius parameter. + - text: Your code should include the -webkit-border-radius vendor prefix that uses the $radius parameter. testString: assert(code.match(/-webkit-border-radius:\s*?\$radius;/gi)); - - text: Your code should include the -moz-border-radius vender prefix that uses the $radius parameter. + - text: Your code should include the -moz-border-radius vendor prefix that uses the $radius parameter. testString: assert(code.match(/-moz-border-radius:\s*?\$radius;/gi)); - - text: Your code should include the -ms-border-radius vender prefix that uses the $radius parameter. + - text: Your code should include the -ms-border-radius vendor prefix that uses the $radius parameter. testString: assert(code.match(/-ms-border-radius:\s*?\$radius;/gi)); - text: Your code should include the general border-radius rule that uses the $radius parameter. testString: assert(code.match(/border-radius:\s*?\$radius;/gi).length == 4);