Merge pull request #15397 from texas2010/fix/default-code-tab-spacing

Fix default code's tab spacing
pull/15448/head
Dylan 2017-06-17 21:21:54 -05:00 committed by GitHub
commit b42269a22a
1 changed files with 5 additions and 5 deletions

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