Skip to content

Commit

Permalink
fixup! docs: forms overview copy edit
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Oct 19, 2018
1 parent 0b12cc2 commit 536bc37
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions aio/content/guide/forms-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ This guide provides information to help you decide which type of form works best

<div class="alert is-helpful">


**Note:** For complete information about each kind of form, see [Reactive Forms](guide/reactive-forms) and [Template-driven Forms](guide/forms).

</div>
Expand Down Expand Up @@ -130,7 +129,7 @@ In template-driven forms, each form element is linked to a directive that manage
<img src="generated/images/guide/forms-overview/dataflow-td-forms-vtm.png" alt="Template-driven forms data flow - view to model" width="100%">
</figure>

The steps below outline the data flow from view to model.
The steps below outline the data flow from view to model when the input value changes from *Red* to *Blue*.

1. The user types *Blue* into the input element.
1. The input element emits an "input" event with the value *Blue*.
Expand All @@ -145,7 +144,7 @@ is updated to the value emitted by the `ngModelChange` event (*Blue*).
<img src="generated/images/guide/forms-overview/dataflow-td-forms-mtv.png" alt="Template-driven forms data flow - model to view" width="100%">
</figure>

The steps below outline the data flow from model to view.
The steps below outline the data flow from model to view when the `favoriteColor` changes from *Blue* to *Red*.

1. The `favoriteColor` value is updated in the component.
1. Change detection begins.
Expand Down

0 comments on commit 536bc37

Please sign in to comment.