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 {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: [

View File

@ -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 */

View File

@ -22,4 +22,4 @@ describe('HeroesComponent', () => {
it('should be created', () => {
expect(component).toBeTruthy();
});
});
});