Skip to content

Commit 2ef473c

Browse files
emartinez-devalxhub
authored andcommitted
docs: fix typos on first-app tutorial (#50211)
PR Close #50211
1 parent e4ad067 commit 2ef473c

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

aio/content/tutorial/first-app/first-app-lesson-01.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you have any trouble during this lesson, you can review the completed code fo
2222

2323
## Lesson steps
2424

25-
Perform these steps on the app code in your chosen IDE (locallly or using the StackBlitz).
25+
Perform these steps on the app code in your chosen IDE (locally or using the StackBlitz).
2626

2727
### Step 1 - Test the default app
2828

@@ -117,7 +117,7 @@ In your IDE:
117117
</section>
118118
## Lesson review
119119

120-
In this lesson, you updated a default Angualar app to display *Hello world*.
120+
In this lesson, you updated a default Angular app to display *Hello world*.
121121
In the process, you learned about the `ng serve` command to serve your app locally for testing.
122122

123123
If have any trouble with this lesson, review the completed code for it in the <live-example></live-example>.

aio/content/tutorial/first-app/first-app-lesson-03.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ In the **Edit** pane of your IDE:
6565

6666
<code-example header="Add HousingLocationComponent to imports array in src/app/home/home.component.ts" path="first-app-lesson-03/src/app/home/home.component.ts" region="add-housingLocation-to-array"></code-example>
6767

68-
1. Now the component is ready for use in the template for the `HomeComponent`. Update the `template` property of the `@Component` metatdata to include a reference to the `<app-housing-location>` tag.
68+
1. Now the component is ready for use in the template for the `HomeComponent`. Update the `template` property of the `@Component` metadata to include a reference to the `<app-housing-location>` tag.
6969

7070
<code-example header="Add housing location to the component template in src/app/home/home.component.ts" path="first-app-lesson-03/src/app/home/home.component.ts" region="add-housingLocation-to-template"></code-example>
7171

aio/content/tutorial/first-app/first-app-lesson-04.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This step adds the properties to the interface that your app needs to represent
6868

6969
1. Save your changes and confirm the app does not display any errors. Correct any errors before you continue to the next step.
7070

71-
At this point, you've defined an inteface that represents data about a housing location including an id, name, and location information.
71+
At this point, you've defined an interface that represents data about a housing location including an id, name, and location information.
7272

7373
### Step 3 - Create a test house for your app
7474

aio/content/tutorial/first-app/first-app-lesson-06.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For a more in depth explanation, please refer to the [Property binding](guide/pr
3333

3434
Perform these steps on the app code in your IDE.
3535

36-
### Step 1 - Update <app-housing-location> tag in the `HomeComponent` tempalte
36+
### Step 1 - Update <app-housing-location> tag in the `HomeComponent` template
3737
This step adds property binding to the `<app-housing-location>` tag.
3838

3939
In the code editor:

aio/content/tutorial/first-app/first-app-lesson-07.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ For a more in depth explanation, please refer to the [Displaying values with int
3535

3636
Perform these steps on the app code in your IDE.
3737

38-
### Step 1 - Update `HousingLocationComponent` template to include iterpolated values
38+
### Step 1 - Update `HousingLocationComponent` template to include interpolated values
3939
This step adds new HTML structure and interpolated values in the `HousingLocationComponent` template.
4040

4141
In the code editor:
@@ -44,9 +44,9 @@ In the code editor:
4444

4545
<code-example header="Update HousingLocationComponent template" path="first-app-lesson-07/src/app/housing-location/housing-location.component.ts" region="add-listing-details"></code-example>
4646

47-
In this updated template code you have used property binding to bind the `housingLocation.photo` to the `src` attribute. The `alt` attribute uses interpoloation to give more context to the alt text of the image.
47+
In this updated template code you have used property binding to bind the `housingLocation.photo` to the `src` attribute. The `alt` attribute uses interpolation to give more context to the alt text of the image.
4848

49-
You use interpoloation to include the values for name, city and state of the `housingLocation` property.
49+
You use interpolation to include the values for name, city and state of the `housingLocation` property.
5050

5151
### Step 2 - Confirm the changes render in the browser
5252
1. Save all changes.

aio/content/tutorial/first-app/first-app-lesson-10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ In the previous step you removed the reference to the `<app-home>` component in
8181

8282
<code-example header="Add routes to the app" path="first-app-lesson-10/src/app/routes.ts" region="define-app-routes"></code-example>
8383

84-
The entries in the `routeConfig` array represent the routes in the application. The first entry navigates to the `HomeComponent` whenever the url matches `''`. The second entry uses some special formatting that will be revisted in a future lesson.
84+
The entries in the `routeConfig` array represent the routes in the application. The first entry navigates to the `HomeComponent` whenever the url matches `''`. The second entry uses some special formatting that will be revisited in a future lesson.
8585

8686
1. Save all changes and confirm that the application works in the browser. The application should still display the list of housing locations.
8787

aio/content/tutorial/first-app/first-app-lesson-11.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you have any trouble during this lesson, you can review the completed code fo
2121
At the end of this lesson your application will have support for routing to the details page.
2222

2323
## Conceptual preview of routing with route parameters
24-
In the previous lesson, you added routing to your app and in this lesson you will expand the types of routing your app supports. Each housing location has specific details that should be displayed when a user navigates to the details page for that item. To accopmlish this goal, you will need to use route parameters.
24+
In the previous lesson, you added routing to your app and in this lesson you will expand the types of routing your app supports. Each housing location has specific details that should be displayed when a user navigates to the details page for that item. To accomplish this goal, you will need to use route parameters.
2525

2626
Route parameters enable you to include dynamic information as a part of your route URL. To identify which housing location a user has clicked on you will use the `id` property of the `HousingLocation` type.
2727

@@ -30,7 +30,7 @@ Route parameters enable you to include dynamic information as a part of your rou
3030
Perform these steps on the app code in your IDE.
3131

3232
### Step 1 - Create a new service for your app
33-
In lesson 10, you added a second route to `src/app/routes.ts`, this route includes a special segment that identifes the route parameter, `id`:
33+
In lesson 10, you added a second route to `src/app/routes.ts`, this route includes a special segment that identifies the route parameter, `id`:
3434

3535
<code-example format="javascript" language="javascript">
3636
'details/:id'
@@ -111,7 +111,7 @@ To access the data you will add a call to the `HousingService`.
111111
</section>
112112

113113
### Step 4 - Add navigation to the `HomeComponent`
114-
In a previous lesson you updated the `AppComponent` template to include a `routerLink`. Adding that code updated your app to enable navigation back to the `HomeComponent` whenver the logo is clicked.
114+
In a previous lesson you updated the `AppComponent` template to include a `routerLink`. Adding that code updated your app to enable navigation back to the `HomeComponent` whenever the logo is clicked.
115115

116116
1. Confirm that your code matches the following:
117117

@@ -121,9 +121,9 @@ In a previous lesson you updated the `AppComponent` template to include a `route
121121

122122
## Lesson Review
123123
In this lesson you updated your app to:
124-
* use route paramters to pass data to a route
124+
* use route parameters to pass data to a route
125125
* use the `routerLink` directive to use dynamic data to create a route
126-
* use route paramter to retrieve data from the `HousingService` to display housing location specific information.
126+
* use route parameter to retrieve data from the `HousingService` to display housing location specific information.
127127

128128
Really great work so far.
129129

@@ -137,7 +137,7 @@ If you are having any trouble with this lesson, you can review the completed cod
137137
For more information about the topics covered in this lesson, visit:
138138

139139
<!-- vale Angular.Google_WordListSuggestions = NO -->
140-
* [Route Paremters](guide/router#accessing-query-parameters-and-fragments)
140+
* [Route Parameters](guide/router#accessing-query-parameters-and-fragments)
141141
* [Routing in Angular Overview](guide/routing-overview)
142142
* [Common Routing Tasks](guide/router)
143143
* [Optional Chaining Operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining)

0 commit comments

Comments
 (0)