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