diff --git a/aio/content/examples/universal/src/app/app.server.module.ts b/aio/content/examples/universal/src/app/app.server.module.ts index 3d1c0fa9be..b32046a592 100644 --- a/aio/content/examples/universal/src/app/app.server.module.ts +++ b/aio/content/examples/universal/src/app/app.server.module.ts @@ -1,9 +1,9 @@ -import {NgModule} from '@angular/core'; -import {ServerModule} from '@angular/platform-server'; -import {ModuleMapLoaderModule} from '@nguniversal/module-map-ngfactory-loader'; +import { NgModule } from '@angular/core'; +import { ServerModule } from '@angular/platform-server'; +import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader'; -import {AppModule} from './app.module'; -import {AppComponent} from './app.component'; +import { AppModule } from './app.module'; +import { AppComponent } from './app.component'; @NgModule({ imports: [ diff --git a/aio/content/examples/universal/src/app/hero.service.ts b/aio/content/examples/universal/src/app/hero.service.ts index ba263e5636..e05e284559 100644 --- a/aio/content/examples/universal/src/app/hero.service.ts +++ b/aio/content/examples/universal/src/app/hero.service.ts @@ -119,7 +119,7 @@ export class HeroService { // Let the app keep running by returning an empty result. return of(result as T); - } + }; } /** Log a HeroService message with the MessageService */ diff --git a/aio/content/examples/universal/src/app/heroes/heroes.component.spec.ts b/aio/content/examples/universal/src/app/heroes/heroes.component.spec.ts index 7ec3956eac..9c3b1c4d9f 100644 --- a/aio/content/examples/universal/src/app/heroes/heroes.component.spec.ts +++ b/aio/content/examples/universal/src/app/heroes/heroes.component.spec.ts @@ -22,4 +22,4 @@ describe('HeroesComponent', () => { it('should be created', () => { expect(component).toBeTruthy(); }); -}); \ No newline at end of file +});