From fb2599b8fe63e8215adb5764864bfbed39863c4e Mon Sep 17 00:00:00 2001 From: ahstro Date: Thu, 6 Aug 2015 22:27:01 +0200 Subject: [PATCH] Grammatical error in 'Use Hex Code for Specific Colors' --- seed/challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json index f4a11581d3..a08b9001f9 100644 --- a/seed/challenges/html5-and-css.json +++ b/seed/challenges/html5-and-css.json @@ -3402,7 +3402,7 @@ "dashedName": "waypoint-use-hex-code-for-specific-colors", "difficulty": 1.54, "description": [ - "Did you know there other ways to represent colors in CSS? One of these ways is called hexadecimal code, or \"hex code\" for short.", + "Did you know there are other ways to represent colors in CSS? One of these ways is called hexadecimal code, or \"hex code\" for short.", "\"Decimal\" means the numbers zero through nine - the numbers that people use in everyday life. \"Hexadecimal\" includes these 10 numbers, plus the letters A, B, C, D, E and F. This means that Hexidecimal has a total of 16 possible values, instead of the 10 possible values that our normal base-10 number system gives us.", "With CSS, we use 6 hexidecimal number to represent colors. For example, #000000 is the lowest possible value, and it represents the color black.", "Replace the word \"black\" in our body element's background-color with its \"hex code\" representation, #000000. "