diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index 317a6daaa4..b5ca05013e 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -513,7 +513,7 @@ "description": [ "Make all of your p elements use the \"Monospace\" font.", "You can set an element's font by using the \"font-family\" attribute.", - "For example, if you wanted to set your h2 element's font to \"Sans-serif\", you would use the following CSS: h2 { font-family: 'Sans-serif'; }" + "For example, if you wanted to set your h2 element's font to \"Sans-serif\", you would use the following CSS: h2 { font-family: Sans-serif; }" ], "tests": [ "assert($('p').css('font-family').match(/monospace/i), 'Your p elements should use the font \"Monospace\".')"