From ea632c3a795d589d0c655502d3dadaf99c1c3dd8 Mon Sep 17 00:00:00 2001 From: Em01 Date: Tue, 27 Oct 2015 09:49:56 +0000 Subject: [PATCH] Fixed additional typos. --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index db91a37a6a..956faafd9b 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -32,7 +32,7 @@ "description": [ "In computer science, data structures are things that hold data. JavaScript has seven of these. For example, the Number data structure holds numbers.", "Let's learn about the most basic data structure of all: the Boolean. Booleans can only hold the value of either true or false. They are basically little on-off switches.", - "Let's modify our welcomeToBooleans function so that it will return trueinstead of falsewhen the run button is clicked." + "Let's modify our welcomeToBooleans function so that it will return true instead of false when the run button is clicked." ], "tests": [ "assert(typeof(welcomeToBooleans()) === 'boolean', 'message: The welcomeToBooleans() function should return a boolean (true/false) value.');",