From 62ca59d9506e18f12787996b7038941e8ced81a9 Mon Sep 17 00:00:00 2001 From: BKinahan Date: Wed, 30 Mar 2016 14:53:11 +0000 Subject: [PATCH] Correct plurality in test message of Nest Many Elements --- .../01-front-end-development-certification/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/html5-and-css.json b/challenges/01-front-end-development-certification/html5-and-css.json index e2385fc21e..20f548b1a4 100644 --- a/challenges/01-front-end-development-certification/html5-and-css.json +++ b/challenges/01-front-end-development-certification/html5-and-css.json @@ -2527,7 +2527,7 @@ "" ], "tests": [ - "assert($(\"div\").children(\"p\").length > 1, 'message: Nest your p element inside your div element.');", + "assert($(\"div\").children(\"p\").length > 1, 'message: Nest your p elements inside your div element.');", "assert($(\"div\").children(\"ul\").length > 0, 'message: Nest your ul element inside your div element.');", "assert($(\"div\").children(\"ol\").length > 0, 'message: Nest your ol element inside your div element.');", "assert(code.match(/<\\/div>/g) && code.match(/<\\/div>/g).length === code.match(/
/g).length, 'message: Make sure your div element has a closing tag.');"