From 8286ff9c46fde21c5f3fdc2a8c9a6630efbd1c1a Mon Sep 17 00:00:00 2001 From: Hadrien Allemon Date: Sun, 22 Jul 2018 23:39:05 +0200 Subject: [PATCH] fix(challenges): typo in javascript algorithms/debugging/2 In the objectives, the user was asked to log the variable "outputTwice" whereas in the code editor, no such variable existed. I changed the objectif so that it states to change the variable "outputTwo" which is the variable found in the content. --- .../debugging.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/debugging.json b/challenges/02-javascript-algorithms-and-data-structures/debugging.json index 09bee563b..30270005a 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/debugging.json +++ b/challenges/02-javascript-algorithms-and-data-structures/debugging.json @@ -67,9 +67,9 @@ "tests": [ { "text": - "Use console.log() to print the outputTwice variable. In your Browser Console this should print out the value of the variable two times.", + "Use console.log() to print the outputTwo variable. In your Browser Console this should print out the value of the variable two times.", "testString": - "assert(code.match(/console\\.log\\(outputTwo\\)/g), 'Use console.log() to print the outputTwice variable. In your Browser Console this should print out the value of the variable two times.');" + "assert(code.match(/console\\.log\\(outputTwo\\)/g), 'Use console.log() to print the outputTwo variable. In your Browser Console this should print out the value of the variable two times.');" }, { "text":