Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit a2dc654

Browse files
committed
fix indentation in code
1 parent 396cd72 commit a2dc654

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

public/docs/_examples/style-guide/ts/01-01/app/kitchen-sink.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ class AppComponent implements OnInit {
3232
bootstrap(AppComponent, []);
3333

3434
const HEROES: Hero[] = [
35-
{id: 1, name: 'Bombasto'},
36-
{id: 2, name: 'Tornado'},
37-
{id: 3, name: 'Magneta'},
35+
{id: 1, name: 'Bombasto'},
36+
{id: 2, name: 'Tornado'},
37+
{id: 3, name: 'Magneta'},
3838
];
3939

4040
function getHeroes(): Promise<Hero[]> {

public/docs/_examples/style-guide/ts/01-01/app/mock-heroes.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import { Hero } from './hero.model';
66

77
export const HEROES: Hero[] = [
8-
{id: 1, name: 'Bombasto'},
9-
{id: 2, name: 'Tornado'},
10-
{id: 3, name: 'Magneta'},
8+
{id: 1, name: 'Bombasto'},
9+
{id: 2, name: 'Tornado'},
10+
{id: 3, name: 'Magneta'},
1111
];

0 commit comments

Comments
 (0)