From 5e5c3c32e1e502d2cded7530bd5348a8f3ec9eea Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Wed, 12 Aug 2015 01:39:17 -0700 Subject: [PATCH] Fix issues discovered by @eaglecookie and @sonorangirl --- challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/jquery.json b/challenges/jquery.json index 0adf32f8c29..4fa194e322d 100644 --- a/challenges/jquery.json +++ b/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\"." ],