diff --git a/seed/challenges/03-front-end-libraries/jquery.json b/seed/challenges/03-front-end-libraries/jquery.json
index 8ca8e43c30..0b5359e2cd 100644
--- a/seed/challenges/03-front-end-libraries/jquery.json
+++ b/seed/challenges/03-front-end-libraries/jquery.json
@@ -1195,12 +1195,12 @@
"id": "bad87fee1348bd9aed208826",
"title": "Target the Children of an Element Using jQuery",
"description": [
- "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.",
+ "When HTML elements are placed one level below another they are called children
of that element. For example, the button elements in this challenge with the text \"#target1\", \"#target2\", and \"#target3\" are all children
of the <div class=\"well\" id=\"left-well\">
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 color of blue:",
+ "Here's an example of how you would use the children()
function to give the children of your left-well
element the color blue
:",
"$(\"#left-well\").children().css(\"color\", \"blue\")
",
- "Give all the children of your #right-well
element a color of orange."
+ "
right-well
element the color orange."
],
"challengeSeed": [
"fccss",