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

Commit 0e13763

Browse files
Foxandxsswardbell
authored andcommitted
docs(style-guide): 03-02 pluralize villain
closes #1479
1 parent 508b779 commit 0e13763

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/docs/_examples/style-guide/ts/03-02/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component } from '@angular/core';
22

3-
import { HEROES_URL, VILLAIN_URL } from './shared/data.service';
3+
import { HEROES_URL, VILLAINS_URL } from './shared/data.service';
44

55
@Component({
66
selector: 'sg-app',
@@ -11,5 +11,5 @@ import { HEROES_URL, VILLAIN_URL } from './shared/data.service';
1111
})
1212
export class AppComponent {
1313
heroesUrl = HEROES_URL;
14-
villainsUrl = VILLAIN_URL;
14+
villainsUrl = VILLAINS_URL;
1515
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// #docregion
22
// #docregion example
33
export const HEROES_URL = 'api/heroes';
4-
export const VILLAIN_URL = 'api/villains';
4+
export const VILLAINS_URL = 'api/villains';
55
// #enddocregion example

0 commit comments

Comments
 (0)