diff --git a/seed_data/coursewares.json b/seed_data/coursewares.json index d8e5f428e40..cb0394a2cbf 100644 --- a/seed_data/coursewares.json +++ b/seed_data/coursewares.json @@ -181,15 +181,15 @@ }, { "_id": "bad87fee1348bd9aedf08801", - "name": "Use the P Element", + "name": "Use the Paragraph Element", "difficulty": 0.011, "description": [ - "Create a p element below the h2 element, and give it the text \"Hello Paragraph\".", - "p elements are the preferred element for normal-sized paragraph text on websites.", - "You can create a p element like so: <p>I'm a p tag!</p>" + "Create a paragraph element below the h2 element, and give it the text \"Hello Paragraph\".", + "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.isTrue((/hello(\\s)+paragraph/gi).test($('p').text()), 'Your p element should have the text \"Hello Paragraph\"')" + "assert.isTrue((/hello(\\s)+paragraph/gi).test($('p').text()), 'Your paragraph element should have the text \"Hello Paragraph\"')" ], "challengeSeed": [ "

Hello World

", @@ -208,7 +208,7 @@ "You'll encounter other self-closing element tags soon." ], "tests": [ - "assert(($('br').length > 0), 'You should have a br element between your h2 and p elements.')" + "assert(($('br').length > 0), 'You should have a br element between your h2 and paragraph elements.')" ], "challengeSeed": [ "

Hello World

", @@ -230,7 +230,7 @@ "tests": [ "assert(($('h1').length > 0), 'The h1 element should not commented. It should be visible in the browser.')", "assert(($('h2').length > 0), 'The h2 element should not commented. It should be visible in the browser.')", - "assert(($('p').length > 0), 'The p element should not commented. It should be visible in the browser.')" + "assert(($('p').length > 0), 'The paragraph element should not commented. It should be visible in the browser.')" ], "challengeSeed": [ "