docs(Quickstart): fix several typos in the Quickstart guide
closes #630
This commit is contained in:
parent
441a6bd698
commit
a4c5ab5608
|
@ -151,7 +151,7 @@ code-example(format="").
|
|||
`AppComponent` in a visual tree.
|
||||
A more sophisticated app would have more files and modules, at least as many as it had components.
|
||||
|
||||
Quickstart isn't sophisticated; one component is all we need.
|
||||
This Quickstart isn't sophisticated; one component is all we need.
|
||||
Yet modules play a fundamental organizational role in even this small app.
|
||||
|
||||
Modules rely on other modules. In TypeScript Angular apps, when we need something
|
||||
|
@ -342,7 +342,7 @@ figure.image-display
|
|||
:marked
|
||||
## Appendices
|
||||
The balance of this chapter is a set of appendices that
|
||||
elaborate some of the points we covered quickly above.
|
||||
elaborate on some of the points we covered quickly above.
|
||||
|
||||
There is no essential material here. Continued reading is for the curious.
|
||||
|
||||
|
@ -512,7 +512,7 @@ code-example(format="").
|
|||
* We iterate development faster because we only re-compile changed files.
|
||||
We notice the difference as soon as the app grows beyond a handful of files.
|
||||
|
||||
* pre-compilation fits into a continuous integration process of build, test, deploy.
|
||||
* Pre-compilation fits into a continuous integration process of build, test, deploy.
|
||||
:marked
|
||||
The `System.import` call tells SystemJS to import the `boot` file
|
||||
(`boot.js` ... after transpiling `boot.ts`, remember?).
|
||||
|
@ -536,7 +536,7 @@ code-example(format="").
|
|||
this library most of the time. It's pretty "core" if we're always writing for a browser.
|
||||
|
||||
But it is possible to load a component in a different enviroment.
|
||||
We might load it on a mobile device with [Apache Cordova](https://cordova.apache.org/)
|
||||
We might load it on a mobile device with [Apache Cordova](https://cordova.apache.org/).
|
||||
We might wish to render the first page of our application on the server
|
||||
to improve launch performance or facilitate
|
||||
[SEO](http://static.googleusercontent.com/media/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf).
|
||||
|
@ -579,7 +579,7 @@ code-example(format="").
|
|||
#### Reusability
|
||||
We refactor, rename, and relocate files as our application evolves.
|
||||
We can't do any of those things while the file calls `bootstrap`.
|
||||
we can't move it.
|
||||
We can't move it.
|
||||
We can't reuse the component in another application.
|
||||
We can't pre-render the component on the server for better performance.
|
||||
|
||||
|
|
Loading…
Reference in New Issue