diff --git a/aio/content/guide/styleguide.md b/aio/content/guide/styleguide.md index 41baf7ff6d..d7578dd08e 100644 --- a/aio/content/guide/styleguide.md +++ b/aio/content/guide/styleguide.md @@ -576,7 +576,7 @@ and reference assets of different types. - + @Component({ ... }) export class AppComponent { } @@ -595,7 +595,7 @@ and reference assets of different types. - + @Component({ ... }) export class HeroesComponent { } @@ -614,7 +614,7 @@ and reference assets of different types. - + @Component({ ... }) export class HeroListComponent { } @@ -633,7 +633,7 @@ and reference assets of different types. - + @Component({ ... }) export class HeroDetailComponent { } @@ -652,7 +652,7 @@ and reference assets of different types. - + @Directive({ ... }) export class ValidationDirective { } @@ -671,7 +671,7 @@ and reference assets of different types. - + @NgModule({ ... }) export class AppModule @@ -690,7 +690,7 @@ and reference assets of different types. - + @Pipe({ name: 'initCaps' }) export class InitCapsPipe implements PipeTransform { } @@ -709,7 +709,7 @@ and reference assets of different types. - + @Injectable() export class UserProfileService { } @@ -826,7 +826,7 @@ As always, strive for consistency. - + @Injectable() export class HeroDataService { } @@ -845,7 +845,7 @@ As always, strive for consistency. - + @Injectable() export class CreditService { } @@ -864,7 +864,7 @@ As always, strive for consistency. - + @Injectable() export class Logger { } @@ -1224,7 +1224,7 @@ For example, the prefix `toh` represents from **T**our **o**f **H**eroes and the - + @Pipe({ name: 'ellipsis' }) export class EllipsisPipe implements PipeTransform { } @@ -1243,7 +1243,7 @@ For example, the prefix `toh` represents from **T**our **o**f **H**eroes and the - + @Pipe({ name: 'initCaps' }) export class InitCapsPipe implements PipeTransform { } @@ -1625,7 +1625,7 @@ A consistent class and file name convention make these modules easy to spot and - + @NgModule({ ... }) export class AppModule { } @@ -1644,7 +1644,7 @@ A consistent class and file name convention make these modules easy to spot and - + @NgModule({ ... }) export class HeroesModule { } @@ -1663,7 +1663,7 @@ A consistent class and file name convention make these modules easy to spot and - + @NgModule({ ... }) export class VillainsModule { } @@ -1682,7 +1682,7 @@ A consistent class and file name convention make these modules easy to spot and - + @NgModule({ ... }) export class AppRoutingModule { } @@ -1701,7 +1701,7 @@ A consistent class and file name convention make these modules easy to spot and - + @NgModule({ ... }) export class HeroesRoutingModule { }