From 5fd4ce00303a1cefff4eabbe86d068456b0c2545 Mon Sep 17 00:00:00 2001 From: terakilobyte Date: Thu, 28 May 2015 08:29:35 -0400 Subject: [PATCH] Fix typo in import a font family, closes # 698 --- 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 dfe705def4..fde44601b0 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -454,7 +454,7 @@ "description": [ "Make all paragraph 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 \"San-serif\", you would use the following CSS: h2 { font-family: 'San-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 paragraph elements should use the font \"Monospace\".')"