From 72c52114f6f98aa94c791f5e5ecb6a00c479f2e2 Mon Sep 17 00:00:00 2001 From: Em01 Date: Tue, 27 Oct 2015 09:49:56 +0000 Subject: [PATCH] Fixed additional typos. --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index db91a37a6a..956faafd9b 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/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.');",