From 48c3cbcb01d9a8fb6ade729d65b635f18236bd23 Mon Sep 17 00:00:00 2001 From: Tyler Moeller Date: Sun, 20 Sep 2015 08:35:21 -0700 Subject: [PATCH] Fix typo in html5-and-css.json The challenge "Nest an Anchor Element within a Paragraph" has a small typo at the end of the English description text as highlighted below: "Now nest your existing a element within a new p element so that the surrounding paragraph says "View more cat photos", but where only "cat photos" is a link, and the rest of the text is rest is plain text." This commit removes the final "rest is" highlighted above, giving us this sentence instead: Now nest your existing a element within a new p element so that the surrounding paragraph says "View more cat photos", but where only "cat photos" is a link, and the rest of the text is plain text. --- challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index 8f5f48cbec..4d3d2be5f3 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -1135,7 +1135,7 @@ "\"a", "Here's an example: <p>Here's a <a href=\"http://freecodecamp.com\"> link to Free Code Camp</a> for you to follow.</p>.", "Nesting just means putting one element inside of another element.", - "Now nest your existing a element within a new p element so that the surrounding paragraph says \"View more cat photos\", but where only \"cat photos\" is a link, and the rest of the text is rest is plain text." + "Now nest your existing a element within a new p element so that the surrounding paragraph says \"View more cat photos\", but where only \"cat photos\" is a link, and the rest of the text is plain text." ], "tests": [ "assert($(\"a\").attr(\"href\").match(/freecatphotoapp.com/gi).length > 0, 'You need an a element that links to \"freecatphotoapp.com\".')",