diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md index a2214e7e80..f07d7a5df5 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md @@ -21,11 +21,11 @@ Nest three button elements within each of your well button elements within each of your div elements with class well. + - text: Three button elements should be nested within each of your div elements with class well. testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3); - text: You should have a total of 6 button elements. testString: assert($("button") && $("button").length > 5); - - text: Make sure all your button elements have closing tags. + - text: All of your button elements should have closing tags. testString: assert(code.match(/<\/button>/g) && code.match(/