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