spacing for code

This commit is contained in:
John Papa 2015-10-15 22:08:55 -04:00
parent 37175274a2
commit 4bea418356
1 changed files with 10 additions and 10 deletions

View File

@ -48,16 +48,16 @@ include ../../../../_includes/_util-fns
Lets create an array of ten heroes at the bottom of `app.ts`. Lets create an array of ten heroes at the bottom of `app.ts`.
``` ```
var HEROES: Hero[] = [ var HEROES: Hero[] = [
{ "id": 11, "name": "Mr. Nice" }, { "id": 11, "name": "Mr. Nice" },
{ "id": 12, "name": "Narco" }, { "id": 12, "name": "Narco" },
{ "id": 13, "name": "Bombasto" }, { "id": 13, "name": "Bombasto" },
{ "id": 14, "name": "Celeritas" }, { "id": 14, "name": "Celeritas" },
{ "id": 15, "name": "Magneta" }, { "id": 15, "name": "Magneta" },
{ "id": 16, "name": "RubberMan" }, { "id": 16, "name": "RubberMan" },
{ "id": 17, "name": "Dynama" }, { "id": 17, "name": "Dynama" },
{ "id": 18, "name": "Dr IQ" }, { "id": 18, "name": "Dr IQ" },
{ "id": 19, "name": "Magma" }, { "id": 19, "name": "Magma" },
{ "id": 20, "name": "Tornado" } { "id": 20, "name": "Tornado" }
]; ];
``` ```
The `HEROES` array is of type `Hero`. The `HEROES` array is of type `Hero`.