From fddf30cfafe05c014ed34bb7b3cfcb890896f75f Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Tue, 25 Oct 2016 01:10:03 +0300 Subject: [PATCH] doc(compiler-cli): align example with style guide (#12414) See The Angular Style Guide, [Section 2.2 - Separate File Names with Dots and Dashes](https://angular.io/docs/ts/latest/guide/style-guide.html#!#02-02) --- modules/@angular/compiler-cli/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@angular/compiler-cli/README.md b/modules/@angular/compiler-cli/README.md index 61f7efe963..6c4156a78d 100644 --- a/modules/@angular/compiler-cli/README.md +++ b/modules/@angular/compiler-cli/README.md @@ -27,7 +27,7 @@ Then you can add an import statement in the `bootstrap` allowing you to bootstra generated code: ```typescript -main_module.ts +main.module.ts ------------- import {BrowserModule} from '@angular/platform-browser'; import {Component, NgModule, ApplicationRef} from '@angular/core'; @@ -49,7 +49,7 @@ export class MainModule { bootstrap.ts ------------- -import {MainModuleNgFactory} from './main_module.ngfactory'; +import {MainModuleNgFactory} from './main.module.ngfactory'; import {platformBrowser} from '@angular/platform-browser'; platformBrowser().bootstrapModuleFactory(MainModuleNgFactory);