From a47c057da9dc6280f004d3d5c08ae53cd2e92b45 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sat, 19 Dec 2015 21:10:08 +0530 Subject: [PATCH] Fixes #5334 : Typo in target a specfic child of an element waypoint --- .../01-front-end-development-certification/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/jquery.json b/seed/challenges/01-front-end-development-certification/jquery.json index cf52b13ef7..3ac9cfade8 100644 --- a/seed/challenges/01-front-end-development-certification/jquery.json +++ b/seed/challenges/01-front-end-development-certification/jquery.json @@ -907,7 +907,7 @@ "You've seen why id attributes are so convenient for targeting with jQuery selectors. But you won't always have such neat ids to work with.", "Fortunately, jQuery has some other tricks for targeting the right elements.", "jQuery uses CSS Selectors to target elements. target:nth-child(n) css selector allows you to select all the nth element with the target class or element type.", - "Here's how you would give the third element in each well bounce:", + "Here's how you would give the third element in each well the bounce class:", "$(\".target:nth-child(3)\").addClass(\"animated bounce\");", "Make the second child in each of your well elements bounce. You must target the children of element with the target class." ],