From fb0cea11fad00a09cb364e97ac99521cc0d9ced5 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Mon, 18 Jan 2016 22:18:32 -0800 Subject: [PATCH] Fix a typo. "all elements", not "all element". --- challenges/01-front-end-development-certification/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json index 6e6aa444e5b..53a90934272 100644 --- a/challenges/01-front-end-development-certification/jquery.json +++ b/challenges/01-front-end-development-certification/jquery.json @@ -907,7 +907,7 @@ "description": [ "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.", + "jQuery uses CSS Selectors to target elements. target:nth-child(n) css selector allows you to select all the nth elements with the target class or element type.", "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."