From a9e7781844ac44ea9501bc6fe64bf3dc581f3963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Rodr=C3=ADguez?= Date: Sun, 4 Sep 2016 03:09:31 +0200 Subject: [PATCH] docs(quickstart): remove instruction (#2261) --- public/docs/ts/latest/quickstart.jade | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/public/docs/ts/latest/quickstart.jade b/public/docs/ts/latest/quickstart.jade index 3ec32713df..c8c680ec4c 100644 --- a/public/docs/ts/latest/quickstart.jade +++ b/public/docs/ts/latest/quickstart.jade @@ -190,6 +190,12 @@ block install-packages Every Angular application has at least one module: the _root module_, named `AppModule` here. + **Create #{_an} #{_appDir} subfolder** off the project root directory: + + code-example. + mkdir #{_appDir} + + :marked Create the file `app/app.module.ts` with the following content: +makeExample('app/app.module.1.ts')(format='.') @@ -221,15 +227,10 @@ h1#root-component Step !{step++}: Create a component and add it to your applicat Components are the basic building blocks of Angular applications. A component controls a portion of the screen—a *view*—through its associated template - **Create #{_an} #{_appDir} subfolder** off the project root directory: - -code-example. - mkdir #{_appDir} - a#app-component p. #[b Create the component file] - #[code #[+adjExPath('app/app.component.ts')]] (in this newly created directory) with the following content: + #[code #[+adjExPath('app/app.component.ts')]] with the following content: +makeExample('app/app.component.ts')