Fix default code's tab spacing

This commit is contained in:
texas2010
2017-06-16 09:29:52 -05:00
parent 457b8b6416
commit 4c1407fb59

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');",