Fix default code's tab spacing

This commit is contained in:
texas2010
2017-06-16 09:29:52 -05:00
parent 53141040f4
commit 28376b2e25

View File

@ -1276,11 +1276,11 @@
], ],
"challengeSeed": [ "challengeSeed": [
"var Person = function(firstAndLast) {", "var Person = function(firstAndLast) {",
" // Complete the method below and implement the others similarly", " // Complete the method below and implement the others similarly",
" this.getFullName = function() {", " this.getFullName = function() {",
" return \"\";", " return \"\";",
" };", " };",
" return firstAndLast;", " return firstAndLast;",
"};", "};",
"", "",
"var bob = new Person('Bob Ross');", "var bob = new Person('Bob Ross');",