From 4c1407fb59602df8764fbffbe78a0367bdc4b1a5 Mon Sep 17 00:00:00 2001 From: texas2010 Date: Fri, 16 Jun 2017 09:29:52 -0500 Subject: [PATCH] Fix default code's tab spacing --- .../intermediate-algorithm-scripting.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index 417fb8d91c..351b7c9a0f 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -1276,11 +1276,11 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", - " // Complete the method below and implement the others similarly", - " this.getFullName = function() {", - " return \"\";", - " };", - " return firstAndLast;", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", + " return firstAndLast;", "};", "", "var bob = new Person('Bob Ross');",