diff --git a/seed/challenges/bootstrap.json b/seed/challenges/bootstrap.json index 0067868795..8d1ed23a7f 100644 --- a/seed/challenges/bootstrap.json +++ b/seed/challenges/bootstrap.json @@ -2095,7 +2095,7 @@ "difficulty": 2.28, "description": [ "Just like we labeled our wells, we want to label our buttons.", - "Give each of your button elements text that corresponds to their id." + "Give each of your button elements text that corresponds to their id." ], "tests": [ "assert(new RegExp(\"#target1\",\"gi\").test($(\"#target1\").text()), 'Give your button element with the id target1 the text #target1.')", @@ -2153,7 +2153,7 @@ ], "tests": [ "assert(editor.match(//g) && editor.match(/-->/g).length > 0, 'Be sure to close your comment with -->.')" ], "challengeSeed": [ diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json index 3995147a1b..d3a44025d5 100644 --- a/seed/challenges/html5-and-css.json +++ b/seed/challenges/html5-and-css.json @@ -238,13 +238,13 @@ "title": "Fill in the Blank with Placeholder Text", "difficulty": 1.06, "description": [ - "Web developers traditionally use \"Lorem Ipsum\" text as placeholder text. It's called \"Lorem Ipsum\" text because those are the first two words of a famous passage by Cicero of Ancient Rome.", - "\"Lorem Ipsum\" text has been used as placeholder text by typesetters since the 16th century, and this tradition continues on the web.", - "Well, 5 centuries is long enough. Since we're building a CatPhotoApp, let's use something called \"Kitty Ipsum\"!", - "Replace the text inside your p element with the first few words of this \"Kitty Ipsum\" text: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff." + "Web developers traditionally use lorem ipsum text as placeholder text. It's called lorem ipsum text because those are the first two words of a famous passage by Cicero of Ancient Rome.", + "lorem ipsum text has been used as placeholder text by typesetters since the 16th century, and this tradition continues on the web.", + "Well, 5 centuries is long enough. Since we're building a CatPhotoApp, let's use something called kitty ipsum text.", + "Replace the text inside your p element with the first few words of this kitty ipsum text: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff." ], "tests": [ - "assert.isTrue((/Kitty(\\s)+ipsum(\\s)+dolor/gi).test($(\"p\").text()), 'Your p element should contain the first few words of the provided \"Kitty Ipsum\" text.')" + "assert.isTrue((/Kitty(\\s)+ipsum(\\s)+dolor/gi).test($(\"p\").text()), 'Your p element should contain the first few words of the provided kitty ipsum text.')" ], "challengeSeed": [ "

Hello World

", @@ -438,7 +438,7 @@ "tests": [ "assert($(\"h2\").css(\"color\") === \"rgb(255, 0, 0)\", 'Your h2 element should be red.')", "assert($(\"h2\").hasClass(\"red-text\"), 'Your h2 element should have the class red-text.')", - "assert($(\"h2\").attr(\"style\") === undefined, 'Please make sure there is no inline style = in you h2 and change the color by using the css class red-text.')" + "assert($(\"h2\").attr(\"style\") === undefined, 'Don't use inline style declarations like style=\"color: red\" in your h2 element.')" ], "challengeSeed": [ "