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

Commit dd29e1d

Browse files
DeborahKwardbell
authored andcommitted
doc(cb): Correct typo's.
1 parent bbae79c commit dd29e1d

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

public/docs/ts/latest/cookbook/visual-studio-2015.jade

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ include ../_util-fns
3636
- [Step 6](#edit-config): Edit the TypeScript configuration file
3737
- [Step 7](#build-and-run): Build and run the app
3838

39-
- [Step 3](#main): Add `main.#{_docsFor}`, identifying the root component to Angular
40-
- [Step 4](#index): Add `index.html`, the web page that hosts the application
41-
42-
- [Make some changes to the app](#make-some-changes)
43-
- [Wrap up](#wrap-up)
44-
4539
.l-main-section
4640
h2#prereq Prerequisite: Node.js
4741

@@ -59,19 +53,19 @@ h2#download Step 1: Download the QuickStart files
5953

6054
:marked
6155
[Download the QuickStart source](https://github.com/angular/quickstart)
62-
from github. If you download as a zip file, extract the files.
56+
from github. If you downloaded as a zip file, extract the files.
6357

6458
.l-main-section
6559
h2#setup-vs Step 2: Set up Visual Studio for TypeScript
6660

6761
:marked
6862
Ensure you have the latest version of Visual Studio 2015 installed.
69-
Then open Visual Studio 2015 and download the latest set of TypeScript tools for
63+
Then open Visual Studio 2015 and install the latest set of TypeScript tools for
7064
Visual Studio as follows:
7165

7266
* Open `Tools` | `Extensions and Updates`.
7367
* Select `Online` in the tree on the left.
74-
* Search for `TypeScript` in the search box in the upper right.
68+
* Search for `TypeScript` using the search box in the upper right.
7569
* Select the latest TypeScript version (`TypeScript 1.8.4 for Visual Studio 2015`).
7670
* Download and install the package.
7771

@@ -95,7 +89,7 @@ h2#copy Step 4: Copy the QuickStart files into the ASP.NET project folder
9589
Copy the QuickStart files downloaded from github to the folder containing the `.csproj` folder.
9690
Include the files in the project as follows:
9791

98-
* Click the `Show All Files` button in Solution Explorer to show all of the files in the project.
92+
* Click the `Show All Files` button in Solution Explorer to show all of the hidden files in the project.
9993
* Right-click on each folder/file to be included in the project and select `Include in Project`.
10094
Minimally, include the following folder/files:
10195
* app folder
@@ -112,8 +106,8 @@ h2#restore Step 5: Restore the required packages
112106
:marked
113107
Restore the packages required for an Angular application as follows:
114108

115-
* Right-click on the packages.json file in Solution Explorer and select `Restore Packages`.
116-
<br>This uses npm to install all of the packages defined in the package.json file. This may take some time.
109+
* Right-click on the `package.json` file in Solution Explorer and select `Restore Packages`.
110+
<br>This uses `npm` to install all of the packages defined in the `package.json` file. This may take some time.
117111
* If desired, open the Output window (`View` | `Output`) to watch the npm commands execute.
118112
* When the restore is finished, you should see a message that states: `npm command completed with exit code 0`.
119113
<br>You may also see some warnings which can be ignored.
@@ -136,7 +130,7 @@ h2#edit-config Step 6: Edit the TypeScript configuration file
136130

137131
:marked
138132
There is one additional option in the TypeScript configuration (`tsconfig.json`) file that is not required when using other editors,
139-
but is required if using Visual Studio 2015. Add line 13 to the tsconfig.json file as shown here. After making this change
133+
but is required if using Visual Studio 2015. Add line 13 to the `tsconfig.json` file as shown here. After making this change
140134
exit Visual Studio and reopen it to reload the project.
141135

142136
+makeJson('cb-visual-studio-2015/ts/tsconfig.json', null, 'tsconfig.json (scripts)')
@@ -166,4 +160,4 @@ h2#build-and-run Step 7: Build and run the app
166160
When you add routing to the application, the refresh only works when there is no routing path in the address bar.
167161

168162
:marked
169-
[Back to top](#top)
163+
[Back to top](#top)

0 commit comments

Comments
 (0)