Skip to content

Commit

Permalink
docs: fix minor typos in tutorials (angular#52970)
Browse files Browse the repository at this point in the history
PR Close angular#52970
  • Loading branch information
sasidharansd authored and dylhunn committed Nov 30, 2023
1 parent dcf14cc commit 702e790
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const appConfig: ApplicationConfig = {

</docs-step>

<docs-step title="Import `RouterOutlet` component">
<docs-step title="Import `RouterOutlet` in the component">

Finally, to make sure your app is ready to use the Angular Router, you need to tell the app where you expect the router to display the desired content. Accomplish that by using the `RouterOutlet` directive from `@angular/router`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Use `'user'` for the path of `UserComponent`.

In addition to defining the routes correctly, Angular Router also enables you to set the page title whenever users are navigating by adding the `title` property to each route.

In `app.routes.ts` the `title` property to the default route (`path: ''`) and the `user` route. Here's an example:
In `app.routes.ts`, add the `title` property to the default route (`path: ''`) and the `user` route. Here's an example:

<docs-code language="ts" highlight="[8]">
import {Routes} from '@angular/router';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting form control value

Now that your forms are setup with Angular, the next step is access the values from the form controls.
Now that your forms are setup with Angular, the next step is to access the values from the form controls.

In this activity, you'll learn how to get the value from your form input.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Reactive Forms

When you want to manage your forms programmatically instead relying purely on the template, reactive forms are the answer.
When you want to manage your forms programmatically instead of relying purely on the template, reactive forms are the answer.

In this activity, you'll learn how to setup reactive forms.

Expand Down

0 comments on commit 702e790

Please sign in to comment.