From 2bbb2bd5411cf6b49bbe139ddb801f949f1d89e9 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Thu, 13 Aug 2015 00:57:36 -0700 Subject: [PATCH] remove inaccurate copy from jQuery challenge --- challenges/jquery.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/challenges/jquery.json b/challenges/jquery.json index 8c6d7214a1..365d782c0f 100644 --- a/challenges/jquery.json +++ b/challenges/jquery.json @@ -786,8 +786,6 @@ "difficulty": 3.16, "description": [ "You can also target all the even-numbered elements.", - "Note that computers start counting at zero, so technically, the first element is actually element number zero, which is an odd number.", - "So what a human would consider odd numbers: 1, 3, 5, 7 - a computer would actually consider odd numbers.", "Here's how you would target all the odd-numbered elements with class \"target\" and give them classes: $('.target:odd').addClass('animated shake');", "Try selecting all the even-numbered elements - that is, what your browser will consider even-numbered elements - and giving them the classes of \"animated\" and \"shake\"." ],