From 4a8445e8a0637b8fd19fcf5f26e678f492dff410 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Sun, 31 May 2015 14:00:21 -0700 Subject: [PATCH] closes #780 --- seed_data/challenges/basic-html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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\".')"