From bf97a9a2e1af41e8107667d9bd3959a8779b2cbb Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 3 Oct 2016 18:16:15 -0700 Subject: [PATCH] docs(style-guide): fix folder structure in 04 to match what we do. (#2535) closes issue #2533 --- public/docs/ts/latest/guide/style-guide.jade | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/docs/ts/latest/guide/style-guide.jade b/public/docs/ts/latest/guide/style-guide.jade index 6c9b6f5610..2b3910da6f 100644 --- a/public/docs/ts/latest/guide/style-guide.jade +++ b/public/docs/ts/latest/guide/style-guide.jade @@ -1111,10 +1111,10 @@ a(href="#toc") Back to top a(id='file-tree') :marked - Folder and File Structure + Here is a compliant folder and file structure .filetree - .file src + .file <project root> .children .file app .children @@ -1160,8 +1160,8 @@ a(id='file-tree') .file villains.module.ts .file villains-routing.module.ts .file app.component.ts|html|css|spec.ts - .file app.module.ts - .file app-routing.module.ts + .file app.module.ts + .file app-routing.module.ts .file main.ts .file index.html .file ... @@ -1226,11 +1226,11 @@ a(href="#toc") Back to top .s-rule.do :marked - **Do** create an Angular module at the root of the application. + **Do** create an Angular module in the app's root folder (e.g., in `/app`). .s-why :marked - **Why?** Every app requires at least one Angular module. + **Why?** Every app requires at least one root Angular module. .s-rule.consider :marked