Pluralize 'field' and add missing 'the' in Quickstart

closes #387
This commit is contained in:
johnapost 2015-11-19 20:53:09 -05:00 committed by Ward Bell
parent 8a4861c26a
commit 880f72639f
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ include ../../../_includes/_util-fns
:marked :marked
`@Component` tells Angular that this class *is an Angular component*. `@Component` tells Angular that this class *is an Angular component*.
The configuration object passed to the `@Component` method has two The configuration object passed to the `@Component` method has two
field, a `selector` and a `template`. fields, a `selector` and a `template`.
The `selector` specifies a CSS selector for a host HTML element named `my-app`. The `selector` specifies a CSS selector for a host HTML element named `my-app`.
Angular creates and displays an instance of our `AppComponent` Angular creates and displays an instance of our `AppComponent`
@ -256,7 +256,7 @@ include ../../../_includes/_util-fns
``` ```
These commands both *install* the packages and *create* an npm `package.json` that will These commands both *install* the packages and *create* an npm `package.json` that will
help us develop and maintain our application in future. help us develop and maintain our application in the future.
The essence of our `package.json` should look like this: The essence of our `package.json` should look like this:
+makeJson('quickstart/ts/package.json', { paths: 'name, version, dependencies, devDependencies'}) +makeJson('quickstart/ts/package.json', { paths: 'name, version, dependencies, devDependencies'})