From ab35e566616fdefe5e1f25219c55fde75d385ddb Mon Sep 17 00:00:00 2001 From: Isabell Long Date: Sat, 22 Aug 2015 18:39:07 +0100 Subject: [PATCH 1/2] Target Parent jQuery: elements => element because we reference only one - Partially fixes #2392. --- seed/challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json index aecaf645a6..e3ed5de816 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -617,7 +617,7 @@ "title": "Target the Parent of an Element Using jQuery", "difficulty": 3.13, "description": [ - "Every HTML elements has a parent element from which it inherits properties.", + "Every HTML element has a parent element from which it inherits properties.", "For example, your jQuery Playground h3 element has the parent element of <div class=\"container-fluid\">, which itself has the parent body.", "jQuery has a function called parent() that allows you to access the parent of whichever element you've selected.", "Give the parent of the #target1 element background-color of red.", From 3d818147a5e709af880503052113c8079105e717 Mon Sep 17 00:00:00 2001 From: Isabell Long Date: Sat, 22 Aug 2015 18:51:21 +0100 Subject: [PATCH 2/2] Spans for Inline Elements: remove "grow" as we already said "fill" - Fixes #2332. --- seed/challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/bootstrap.json b/seed/challenges/bootstrap.json index ac60120ba5..4211392b8a 100644 --- a/seed/challenges/bootstrap.json +++ b/seed/challenges/bootstrap.json @@ -893,7 +893,7 @@ "title": "Use Spans for Inline Elements", "difficulty": 2.105, "description": [ - "You can use use spans to create inline elements. Remember when we used the btn-block class to make the button grow fill the entire row?", + "You can use use spans to create inline elements. Remember when we used the btn-block class to make the button fill the entire row?", "This image illustrates the difference between inline elements and block-level elements:", "\"An", "By using the span element, you can put several elements together, and even style different parts of the same element differently.",