From 0e137639430eb807ea8efee82bfa91c9760cd953 Mon Sep 17 00:00:00 2001 From: Foxandxss Date: Mon, 23 May 2016 15:22:23 +0200 Subject: [PATCH] docs(style-guide): 03-02 pluralize villain closes #1479 --- .../docs/_examples/style-guide/ts/03-02/app/app.component.ts | 4 ++-- .../_examples/style-guide/ts/03-02/app/shared/data.service.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/_examples/style-guide/ts/03-02/app/app.component.ts b/public/docs/_examples/style-guide/ts/03-02/app/app.component.ts index 73ceb239dc..a434f05635 100644 --- a/public/docs/_examples/style-guide/ts/03-02/app/app.component.ts +++ b/public/docs/_examples/style-guide/ts/03-02/app/app.component.ts @@ -1,6 +1,6 @@ import { Component } from '@angular/core'; -import { HEROES_URL, VILLAIN_URL } from './shared/data.service'; +import { HEROES_URL, VILLAINS_URL } from './shared/data.service'; @Component({ selector: 'sg-app', @@ -11,5 +11,5 @@ import { HEROES_URL, VILLAIN_URL } from './shared/data.service'; }) export class AppComponent { heroesUrl = HEROES_URL; - villainsUrl = VILLAIN_URL; + villainsUrl = VILLAINS_URL; } diff --git a/public/docs/_examples/style-guide/ts/03-02/app/shared/data.service.ts b/public/docs/_examples/style-guide/ts/03-02/app/shared/data.service.ts index fedc4f3caf..ad665a99c2 100644 --- a/public/docs/_examples/style-guide/ts/03-02/app/shared/data.service.ts +++ b/public/docs/_examples/style-guide/ts/03-02/app/shared/data.service.ts @@ -1,5 +1,5 @@ // #docregion // #docregion example export const HEROES_URL = 'api/heroes'; -export const VILLAIN_URL = 'api/villains'; +export const VILLAINS_URL = 'api/villains'; // #enddocregion example