From a4c5ab5608468c85a6f50fa4960bb5f39a8468ce Mon Sep 17 00:00:00 2001 From: joshuawilson Date: Thu, 31 Dec 2015 23:08:44 -0500 Subject: [PATCH] docs(Quickstart): fix several typos in the Quickstart guide closes #630 --- public/docs/ts/latest/quickstart.jade | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/docs/ts/latest/quickstart.jade b/public/docs/ts/latest/quickstart.jade index 128878ab97..9de7e30c91 100644 --- a/public/docs/ts/latest/quickstart.jade +++ b/public/docs/ts/latest/quickstart.jade @@ -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.