From d99bd7c9cda0a51a230c8feaa92377b59b05f133 Mon Sep 17 00:00:00 2001 From: Natac13 Date: Tue, 1 Sep 2015 06:42:33 -0400 Subject: [PATCH] fixes grammatical error on jQuery challenge 'Target the Children of an Element Using jQuery'.... missing 'they' word --- challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/jquery.json b/challenges/jquery.json index 062df484ce..0efea76283 100644 --- a/challenges/jquery.json +++ b/challenges/jquery.json @@ -674,7 +674,7 @@ "title": "Target the Children of an Element Using jQuery", "difficulty": 3.14, "description": [ - "Many HTML elements have children elements from which inherit their properties.", + "Many HTML elements have children elements from which they inherit their properties.", "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.", "Give all the children of your #right-well element a color of green.",