From b92f392908372a534d861e53c31bbedcb90b6198 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Tue, 26 May 2015 13:28:59 -0700 Subject: [PATCH 1/2] Fix typo add backslash to info on `change color of text` info closes #563 --- 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 1eef6c6c28..00f73057b5 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -196,7 +196,7 @@ "Change the h2 element's style so that its text color is red.", "We can do this by changing the style of the h2 element.", "The style that is responsible for the color of an element's text is the \"color\" style.", - "Here's how you would set your h2 element's text color to blue: <h2 style=\"color: blue\">CatPhotoApp<h2>" + "Here's how you would set your h2 element's text color to blue: <h2 style=\"color: blue\">CatPhotoApp<\/h2>" ], "tests": [ "assert($('h2').css('color') === 'rgb(255, 0, 0)', 'Your h2 element should be red.')" From 011625d926a3b428d7ea7870c0005d289ae0da16 Mon Sep 17 00:00:00 2001 From: LumenTeun Date: Wed, 27 May 2015 02:51:08 +0200 Subject: [PATCH 2/2] Minor grammatical error --- 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 00f73057b5..cb2ab71f61 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -265,7 +265,7 @@ }, { "_id": "bad87fee1348bd9aefe08806", - "name": "Waypoint: Style Multiple Elements with a CSS Classes", + "name": "Waypoint: Style Multiple Elements with a CSS Class", "difficulty": 0.020, "description": [ "Apply the \"red-text\" class to the h2 and p elements.",