From 28376b2e252b490ea44463be3a7b55dbe623330b 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/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index 417fb8d91c..351b7c9a0f 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/seed/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');",