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);