diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json
index 0adf32f8c2..4fa194e322 100644
--- a/seed/challenges/jquery.json
+++ b/seed/challenges/jquery.json
@@ -257,7 +257,7 @@
"title": "Target the same element with multiple jQuery Selectors",
"difficulty": 3.06,
"description": [
- "Now you know three ways of targeting elements: by type $(\"button\")
, by class $(\".btn\")
), and by id $(\"#target1\")
).",
+ "Now you know three ways of targeting elements: by type: $(\"button\")
, by class: $(\".btn\")
, and by id $(\"#target1\")
.",
"Use each of these jQuery selectors to target your button
element with the class \"btn\" and the id \"target1\".",
"Use the addClass()
jQuery function to give the element one new class for each selector: \"animated\", \"shake\", and \"btn-primary\"."
],