diff --git a/challenges/jquery.json b/challenges/jquery.json
index da3d97e89d..5d39cce4e5 100644
--- a/challenges/jquery.json
+++ b/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\")
",