From 0c7b1dbf5fc5ebee616a211435238f8cd71fe16d Mon Sep 17 00:00:00 2001 From: Aniruddh Agarwal Date: Sat, 12 Sep 2015 18:03:24 +0800 Subject: [PATCH] Fixes description of jQuery waypoint --- 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 e5e674e054..d69fa67456 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -676,7 +676,7 @@ "title": "Target the Children of an Element Using jQuery", "difficulty": 3.14, "description": [ - "Many HTML elements have children elements from which they inherit their properties.", + "Many HTML elements have children which inherit their properties from their parent HTML elements.", "For example, every HTML element is a child of your body element, and your \"jQuery Playground\" h3 element is a child of your <div class=\"container-fluid\"> element.", "jQuery has a function called children() that allows you to access the children of whichever element you've selected.", "Here's an example of how you would use the children() function to give the children of your left-well element the background color of blue: $(\"#left-well\").children().css(\"color\", \"blue\")",