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

Commit 917e0ce

Browse files
authored
Fixed typo in tutorial(Routing)
The path to `app.component.css` should start from current directory, not 'app/', since the file is already in 'app/'
1 parent 56ac24b commit 917e0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/docs/_examples/toh-5/ts/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Component } from '@angular/core';
1414
`,
1515
// #enddocregion template
1616
// #docregion styleUrls
17-
styleUrls: ['app/app.component.css'],
17+
styleUrls: ['app.component.css'],
1818
// #enddocregion styleUrls
1919
})
2020
export class AppComponent {

0 commit comments

Comments
 (0)