From 299405694bb2095aaeb4de0987818da6971d9c25 Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Thu, 13 Aug 2015 17:36:02 +0100 Subject: [PATCH] Add some code highlighting --- seed/challenges/automated-testing-and-debugging.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/automated-testing-and-debugging.json b/seed/challenges/automated-testing-and-debugging.json index 8bac9c762c..4a3d67e162 100644 --- a/seed/challenges/automated-testing-and-debugging.json +++ b/seed/challenges/automated-testing-and-debugging.json @@ -30,10 +30,10 @@ "typeof is a useful method that we can use to check the type of a variable", "One thing to be careful of is that an array has the type objects", "Try using each of these to see the types they have", - "console.log(typeof(\"\"));", + "console.log(typeof(\"\"));", "console.log(typeof(0));", "console.log(typeof([]));", - "console.log(typeof({}));" + "console.log(typeof({}));" ], "tests":[ "assert(editor.getValue().match(/console\\.log\\(typeof\\(\"\"\\)\\);/gi), 'You should console.log the typeof a string');",