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

docs: fixed path typo in tutorial(Routing, HTTP) #2526

Merged
merged 3 commits into from
Oct 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion public/docs/_examples/toh-5/ts/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { Component } from '@angular/core';

@Component({
moduleId: module.id,
selector: 'my-app',
// #docregion template
template: `
Expand All @@ -14,7 +15,7 @@ import { Component } from '@angular/core';
`,
// #enddocregion template
// #docregion styleUrls
styleUrls: ['app/app.component.css'],
styleUrls: ['app.component.css'],
// #enddocregion styleUrls
})
export class AppComponent {
Expand Down
3 changes: 2 additions & 1 deletion public/docs/_examples/toh-6/ts/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { Component } from '@angular/core';

@Component({
moduleId: module.id,
selector: 'my-app',

template: `
Expand All @@ -13,7 +14,7 @@ import { Component } from '@angular/core';
</nav>
<router-outlet></router-outlet>
`,
styleUrls: ['app/app.component.css']
styleUrls: ['app.component.css']
})
export class AppComponent {
title = 'Tour of Heroes';
Expand Down