From c078702da431bbeae18aaa238978a0561efbbdbf Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Tue, 26 May 2015 11:25:11 -0700 Subject: [PATCH 1/2] fixes #492 --- seed_data/challenges/basic-html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index b30a32ef29..e765c68ead 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -295,7 +295,7 @@ "name": "Waypoint: Change the Font Size of an Element", "difficulty": 0.021, "description": [ - "Create a second p element. Then set the font size of all p elements to 16 pixels.", + "Create a second p element. Then, inside your <style> element, set the font size of all p elements to 16 pixels.", "Font size is controlled by the font-size CSS attribute, like this: h1 { font-size: 30px; }.", "First, create a second paragraph element with the following Kitty Ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.", "See if you can figure out how to give both of your paragraph elements the font-size of 16 pixels (16px). You can do this inside the same <style> tag that we created for your \"red-text\" class." From 7d9ffbaa651516efc949129014c4edfc0e63cb24 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Tue, 26 May 2015 11:44:00 -0700 Subject: [PATCH 2/2] closes #509 --- seed_data/challenges/basic-html5-and-css.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index e765c68ead..f4d0098c3f 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -48,12 +48,12 @@ "name": "Waypoint: Inform with the Paragraph Element", "difficulty": 0.011, "description": [ - "Create a paragraph element below the h2 element, and give it the text \"Hello Paragraph\". As soon as you create the opening <p> tag, one of our tests will pass (since this is valid HTML). Be sure to close the element by adding a closing </p> tag.", + "Create a paragraph element below your h2 element, and give it the text \"Hello Paragraph\". As soon as you create the opening <p> tag, one of our tests will pass (since this is valid HTML). Be sure to close the element by adding a closing </p> tag.", "Paragraph elements are the preferred element for normal-sized paragraph text on websites.", "You can create a paragraph element like so: <p>I'm a p tag!</p>" ], "tests": [ - "assert(($('p').length > 0), 'Create an h2 elements.')", + "assert(($('p').length > 0), 'Create a paragraph element.')", "assert.isTrue((/hello(\\s)+paragraph/gi).test($('p').text()), 'Your paragraph element should have the text \"Hello Paragraph\"')" ], "challengeSeed": [ @@ -68,7 +68,7 @@ "difficulty": 0.012, "description": [ "Add a line break between the <h2> and <p> elements.", - "You can create an line break element with <br/>.", + "You can create a line break element with <br/>.", "Note that <br/> has no closing tag. It is a self-closing element. See how a forward-slash precedes the closing bracket?", "You'll encounter other self-closing element tags soon." ],