Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 9e7e636

Browse files
committed
Incorporate Jesus's feedback
1 parent 4dc0bed commit 9e7e636

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

public/docs/ts/latest/guide/change-log.jade

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ block includes
1010
Having this folder helps separate app code from setup and configuration files.
1111
You can read about moving your existing project to this structure in
1212
[the QuickStart repo update instructions](https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo).
13-
* `app/` has been moved to `src/app/`
14-
* `src/app/main.ts` has been moved to `src/main.ts`
15-
* `index.html`, `styles.css` and `tsconfig.json` have been moved inside `src/`
13+
* `app/main.ts` has been moved to `src/main.ts`.
14+
* `app/` has been moved to `src/app/`.
15+
* `index.html`, `styles.css` and `tsconfig.json` have been moved inside `src/`.
1616
* `systemjs.config.js` now imports `main.js` instead of `app`.
17-
* There is a new `bs-config.json` file at root to configure `lite-server` to serve `src/`
17+
* `lite-server` configuration (`bs-config.json`) to serve `src/`.
1818

1919
## NEW: Reactive Forms guide (2017-01-31)
2020
The new [**Reactive Forms**](reactive-forms.html) guide explains how and why to build a "reactive form".

public/docs/ts/latest/guide/setup.jade

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ block qs-seed
107107
block core-files
108108
a#app-files
109109
:marked
110-
Focus on the following three TypeScript (`.ts`) files in the **`/app`** folder.
110+
Focus on the following three TypeScript (`.ts`) files in the **`/src`** folder.
111111

112112
.filetree
113113
.file src
@@ -131,11 +131,11 @@ block core-files
131131
:marked
132132
All guides and cookbooks have _at least these core files_. Each file has a distinct purpose and evolves independently as the application grows.
133133

134+
Outside `src/` are files meant to support your app, like configuration files and external dependencies.
135+
134136
Whenever a new Typescript, HTML or CSS file is created, it should go inside the `src/` directory (unless noted otherwise).
135137
This is the folder containing your app itself.
136138

137-
Outside `src/` are files meant to support your app, like configuration files and external dependencies.
138-
139139
style td, th {vertical-align: top}
140140
table(width="100%")
141141
col(width="20%")

0 commit comments

Comments
 (0)