docs(aio): fix linting for universal (#20086)

PR Close #20086
This commit is contained in:
Jesus Rodriguez 2017-11-02 00:45:43 +01:00 committed by Igor Minar
parent 2ea76cce31
commit 3db7112b89
3 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
import {NgModule} from '@angular/core'; import { NgModule } from '@angular/core';
import {ServerModule} from '@angular/platform-server'; import { ServerModule } from '@angular/platform-server';
import {ModuleMapLoaderModule} from '@nguniversal/module-map-ngfactory-loader'; import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader';
import {AppModule} from './app.module'; import { AppModule } from './app.module';
import {AppComponent} from './app.component'; import { AppComponent } from './app.component';
@NgModule({ @NgModule({
imports: [ imports: [

View File

@ -119,7 +119,7 @@ export class HeroService {
// Let the app keep running by returning an empty result. // Let the app keep running by returning an empty result.
return of(result as T); return of(result as T);
} };
} }
/** Log a HeroService message with the MessageService */ /** Log a HeroService message with the MessageService */