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

Commit f11a261

Browse files
kapunahelewongjuleskremer
authored andcommitted
docs(change-log): copy edits (#3351)
1 parent c0bb26d commit f11a261

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

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

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ block includes
1616
Revised samples are more clear and cover all topics discussed.
1717

1818
## NEW: Samples re-structured with `src/` folder (2017-02-02)
19-
All documentation samples have been realigned with the default folder structure of the angular-cli.
20-
That's a step along the road to basing our sample in the angular-cli.
19+
All documentation samples have been realigned with the default folder structure of the Angular CLI.
20+
That's a step along the road to basing the sample in the Angular CLI.
2121
But it's also good in its own right.
2222
It helps clearly separate app code from setup and configuration files.
2323

24-
We've updated all samples with an `src/` folder at the project root.
24+
All samples now have a `src/` folder at the project root.
2525
The former `app/` folder moves under `src/`.
2626
Read about moving your existing project to this structure in
2727
<a href="https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo" target="_blank" target="Migrating samples/quickstart app to the src folder">
@@ -47,24 +47,24 @@ block includes
4747
It includes important advice on optimizing for production.
4848

4949
## Hierarchical Dependency Injection: refreshed (2017-01-13)
50-
[Hierarchical Dependency Injection](hierarchical-dependency-injection.html) guide significantly revised.
51-
Closes issue #3086
52-
Revised samples are more clear and cover all topics discussed.
50+
[Hierarchical Dependency Injection](hierarchical-dependency-injection.html) guide is significantly revised.
51+
Closes issue #3086.
52+
Revised samples are clearer and cover all topics discussed.
5353

5454
## Miscellaneous (2017-01-05)
5555
* [Setup](setup.html) guide:
5656
added (optional) instructions on how to remove _non-essential_ files.
5757
* No longer consolidate RxJS operator imports in `rxjs-extensions` file; each file should import what it needs.
58-
* All samples prepend template/style URLS URLs w/ `./` ... and so should you.
58+
* All samples prepend template/style URLs with `./` as a best practice.
5959
* [Style Guide](style-guide.html): copy edits and revised rules.
6060

6161
## Router: more detail (2016-12-21)
6262
Added more information to the [Router](router.html) guide
6363
including sections named outlets, wildcard routes, and preload strategies.
6464

65-
## Http: how to set default request headers (and other request options) (2016-12-14)
65+
## HTTP: how to set default request headers (and other request options) (2016-12-14)
6666
Added section on how to set default request headers (and other request options) to
67-
[Http](server-communication.html#override-default-request-options) guide.
67+
[HTTP](server-communication.html#override-default-request-options) guide.
6868

6969
## Testing: added component test plunkers (2016-12-02)
7070
Added two plunkers that each test _one simple component_ so you can write a component test plunker of your own: <live-example name="setup" plnkr="quickstart-specs">one</live-example> for the QuickStart seed's `AppComponent` and <live-example name="testing" plnkr="banner-specs">another</live-example> for the Testing guide's `BannerComponent`.
@@ -76,9 +76,9 @@ block includes
7676
The sample demonstrates these features too.
7777

7878
## Testing: karma file updates (2016-11-30)
79-
* karma.config + karma-test-shim can handle multiple spec source paths;
80-
see quickstart issue: [angular/quickstart#294](https://github.com/angular/quickstart/issues/294)
81-
* Displays Jasmine Runner output in the karma-launched browser
79+
* `karma.config` + `karma-test-shim` can handle multiple spec source paths;
80+
see quickstart issue: [angular/quickstart#294](https://github.com/angular/quickstart/issues/294).
81+
* Displays Jasmine Runner output in the karma-launched browser.
8282

8383
## QuickStart Rewrite (2016-11-18)
8484
The QuickStart is completely rewritten so that it actually is quick.
@@ -88,7 +88,7 @@ block includes
8888
You are no longer asked to copy-and-paste code into setup files that were not explained anyway.
8989

9090
## Sync with Angular v.2.2.0 (2016-11-14)
91-
Docs and code samples updated and tested with Angular v.2.2.0
91+
Docs and code samples updated and tested with Angular v.2.2.0.
9292

9393
## UPDATE: NgUpgrade Guide for the AOT friendly _upgrade/static_ module (2016-11-14)
9494
The updated [NgUpgrade Guide](upgrade.html) guide covers the
@@ -98,20 +98,20 @@ block includes
9898
The documentation for the version prior to v.2.2.0 has been removed.
9999

100100
## ES6 described in "TypeScript to JavaScript" (2016-11-14)
101-
The updated "[TypeScript to JavaScript](../cookbook/ts-to-js.html)" cookbook
101+
The updated [TypeScript to JavaScript](../cookbook/ts-to-js.html) cookbook
102102
now explains how to write apps in ES6/7
103103
by translating the common idioms in the TypeScript documentation examples
104104
(and elsewhere on the web) to ES6/7 and ES5.
105105

106106
## Sync with Angular v.2.1.1 (2016-10-21)
107-
Docs and code samples updated and tested with Angular v.2.1.0
107+
Docs and code samples updated and tested with Angular v.2.1.1.
108108

109109
## npm _@types_ packages replace _typings_ (2016-10-20)
110110
Documentation samples now get TypeScript type information for 3rd party libraries
111111
from npm `@types` packages rather than with the _typings_ tooling.
112112
The `typings.json` file is gone.
113113

114-
The "[AngularJS Upgrade](upgrade.html)" guide reflects this change.
114+
The [AngularJS Upgrade](upgrade.html) guide reflects this change.
115115
The `package.json` installs `@types/angular` and several `@types/angular-...`
116116
packages in support of upgrade; these are not needed for pure Angular development.
117117

@@ -132,7 +132,7 @@ block includes
132132
New `:enter` and `:leave` aliases make animation more natural.
133133

134134
## Sync with Angular v.2.1.0 (2016-10-12)
135-
Docs and code samples updated and tested with Angular v.2.1.0
135+
Docs and code samples updated and tested with Angular v.2.1.0.
136136

137137
## NEW "Ahead of time (AOT) Compilation" cookbook (2016-10-11)
138138
The NEW [Ahead of time (AOT) Compilation](../cookbook/aot-compiler.html) cookbook
@@ -141,7 +141,7 @@ block includes
141141
followed by the more advanced considerations of compiling and bundling the Tour of Heroes.
142142

143143
## Sync with Angular v.2.0.2 (2016-10-6)
144-
Docs and code samples updated and tested with Angular v.2.0.2
144+
Docs and code samples updated and tested with Angular v.2.0.2.
145145

146146
## "Routing and Navigation" guide with the _Router Module_ (2016-10-5)
147147
The [Routing and Navigation](router.html) guide now locates route configuration
@@ -168,16 +168,16 @@ block includes
168168

169169
## "Style Guide" with _NgModules_ (2016-09-27)
170170

171-
[StyleGuide](style-guide.html) explains our recommended conventions for Angular modules (NgModule).
171+
[StyleGuide](style-guide.html) explains recommended conventions for Angular modules (NgModule).
172172
Barrels now are far less useful and have been removed from the style guide;
173173
they remain valuable but are not a matter of Angular style.
174-
We also relaxed the rule that discouraged use of the `@Component.host` property.
174+
Also relaxed the rule that discouraged use of the `@Component.host` property.
175175

176176
## _moduleId: module.id_ everywhere (2016-09-25)
177177

178178
Sample components that get their templates or styles with `templateUrl` or `styleUrls`
179179
have been converted to _module-relative_ URLs.
180-
We added the `moduleId: module.id` property-and-value to their `@Component` metadata.
180+
Added the `moduleId: module.id` property-and-value to their `@Component` metadata.
181181

182182
This change is a requirement for compilation with AOT compiler when the app loads
183183
modules with SystemJS as the samples currently do.

0 commit comments

Comments
 (0)