diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md index f3dd3b38a6..5e2c1b2a23 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md @@ -24,13 +24,13 @@ Camper Cat's Mortal Kombat survey results are in! Wrap a time tag a ```yml tests: - - text: Your code should have a p element which includes the text "Thank you to everyone for responding to Master Camper Cat's survey." and include a time element. + - text: Your code should have a p element which includes the text Thank you to everyone for responding to Master Camper Cat's survey. and include a time element. testString: assert(timeElement.length); - - text: Your added time tags should wrap around the text "Thursday, September 15<sup>th</sup>". + - text: Your added time tags should wrap around the text Thursday, September 15<sup>th</sup>. testString: assert(timeElement.length && $(timeElement).html().trim() === "Thursday, September 15th"); - text: Your added time tag should have a datetime attribute that is not empty. testString: assert(datetimeAttr && datetimeAttr.length); - - text: Your added datetime attribute should be set to a value of 2016-09-15. + - text: Your added datetime attribute should be set to a value of 2016-09-15. testString: assert(datetimeAttr === "2016-09-15"); ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md index 6b7783e2f8..7f343ffed1 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md @@ -26,7 +26,7 @@ tests: testString: assert($('strong').length == 1); - text: The strong tag should be inside the p tag. testString: assert($('p').children('strong').length == 1); - - text: The strong tag should wrap around the words "Stanford University". + - text: The strong tag should wrap around the words Stanford University. testString: assert($('strong').text().match(/^Stanford University\.?$/gi)); ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md index 51f1ab8622..fb960731cf 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md @@ -25,7 +25,7 @@ Wrap the u tag only around the text "Ph.D. students". tests: - text: Your code should add a u tag to the markup. testString: assert($('u').length === 1); - - text: The u tag should wrap around the text "Ph.D. students". + - text: The u tag should wrap around the text Ph.D. students. testString: assert($('u').text() === 'Ph.D. students'); ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md index 1f0ec03571..a27fe1293a 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md @@ -28,7 +28,7 @@ tests: testString: assert($("form").children("button").length > 0); - text: Your submit button should have the attribute type set to submit. testString: assert($("button").attr("type") === "submit"); - - text: Your submit button should only have the text "Submit". + - text: Your submit button should only have the text Submit. testString: assert($("button").text().match(/^\s*submit\s*$/gi)); - text: Your button element should have a closing tag. testString: assert(code.match(/<\/button>/g) && code.match(/