From af925fe7b3fdafb44daabb04571f4c6152b19d2d Mon Sep 17 00:00:00 2001 From: "Alister N. Mada" Date: Wed, 13 Jan 2016 17:01:46 +0700 Subject: [PATCH] Fixed several typos on Basic JavaScript Waypoints There were some misspellings of the word "referred". closes #6118 --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index c7bc96e1f5..9e5b75788e 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -439,7 +439,7 @@ "id": "cf1391c1c11feddfaeb4bdef", "title": "Create Decimal Numbers with JavaScript", "description": [ - "We can store decimal numbers in variables too. Decimal numbers are sometimes refered to as floating point numbers or floats.", + "We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as floating point numbers or floats.", "Note
Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. Details Here.", "

Instructions

", "Create a variable myDecimal and give it a decimal value." @@ -526,7 +526,7 @@ "
5 % 2 = 1 because
Math.floor(5 / 2) = 2 (Quotient)
2 * 2 = 4
5 - 4 = 1 (Remainder)
", "Usage
In mathematics, a number can be checked even or odd by checking the remainder of the division of the number by 2.", "
17 % 2 = 1 (17 is Odd)
48 % 2 = 0 (48 is Even)
", - "Note
The remainder operator is sometimes incorrectly refered to as the \"modulus\" operator. It is very similar to modulus, but does not work properly with negative numbers.", + "Note
The remainder operator is sometimes incorrectly referred to as the \"modulus\" operator. It is very similar to modulus, but does not work properly with negative numbers.", "

Instructions

", "Set remainder equal to the remainder of 11 divided by 3 using the remainder (%) operator." ], @@ -1105,7 +1105,7 @@ "title": "Use Bracket Notation to Find the First Character in a String", "description": [ "Bracket notation is a way to get a character at a specific index within a string.", - "Most modern programming languages, like JavaScript, don't start counting at 1 like humans do. They start at 0. This is refered to as Zero-based indexing.", + "Most modern programming languages, like JavaScript, don't start counting at 1 like humans do. They start at 0. This is referred to as Zero-based indexing.", "For example, the character at index 0 in the word \"Charles\" is \"C\". So if var firstName = \"Charles\", you can get the value of the first letter of the string by using firstName[0].", "

Instructions

", "Use bracket notation to find the first character in the lastName variable and assign it to firstLetterOfLastName.",