From c1e2af95250afbd7d116b080a0f30336b1e06cde Mon Sep 17 00:00:00 2001 From: Branden Byers Date: Mon, 9 Feb 2015 10:18:05 -0600 Subject: [PATCH] Fix typos The only none obvious fix was this one: 'Lobster' to "Lobster" with double quotes for consistency. The first reference to Lobster was with single quotes and the next challenge had them in double quotes. --- seed_data/coursewares.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/seed_data/coursewares.json b/seed_data/coursewares.json index 27454518f6..9e17304357 100644 --- a/seed_data/coursewares.json +++ b/seed_data/coursewares.json @@ -6,9 +6,9 @@ "description": [ "Welcome to Free Code Camp's first challenge! Click on the button below for further instructions.", "Awesome. Now you can read the rest of this challenge's instructions.", - "You can edit code in text editor we've embedded into this web page.", + "You can edit code in the text editor we've embedded into this web page.", "Do you see the code in the text editor that says <h1>hello</h1>? That's an HTML element.", - "Most HTML elements have an opening tag and a closing tag. Opening tags look like this: <h1>. Closing tags look like this: </h1>. Note that the only difference between opening and is that closing tags have a slash after their opening angle bracket.", + "Most HTML elements have an opening tag and a closing tag. Opening tags look like this: <h1>. Closing tags look like this: </h1>. Note that the only difference between opening and closing tags is that closing tags have a slash after their opening angle bracket.", "To advance to the next exercise, change the h1 tag's text to say \"hello world\" instead of \"hello\"." ], "tests": [ @@ -194,7 +194,7 @@ }, { "_id" : "bad87fee1348bd9aeff08806", - "name": "Use a CSS Classes to Style Multiple Elements", + "name": "Use a CSS Class to Style Multiple Elements", "difficulty" : "0.09", "description": [ "Apply the \"red-text\" class to the h1, h2 and p elements.", @@ -264,7 +264,7 @@ " h2 {", " color: red;", " font-size: 24px;", - " font-family: 'Lobster'", + " font-family: \"Lobster\"", " }", " p {", " font-size: 16px;", @@ -1856,4 +1856,4 @@ ], "challengeType": 0 } -] \ No newline at end of file +]