Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(aio): fix linting for universal #20086

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions 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: [
Expand Down
2 changes: 1 addition & 1 deletion aio/content/examples/universal/src/app/hero.service.ts
Expand Up @@ -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 */
Expand Down
Expand Up @@ -22,4 +22,4 @@ describe('HeroesComponent', () => {
it('should be created', () => {
expect(component).toBeTruthy();
});
});
});