docs(forms): fix a punctuation error (#34278)

PR Close #34278
This commit is contained in:
Matt Janssen
2019-12-06 16:55:13 +01:00
committed by Andrew Kushnir
parent 10a33efc3e
commit eb8cd6cb57

View File

@ -80,7 +80,7 @@ the current state and value through the component class or the component templat
You can display the value in these ways: You can display the value in these ways:
* Through the `valueChanges` observable where you can listen for changes in the form's value in the template using `AsyncPipe` or in the component class using the `subscribe()` method. * Through the `valueChanges` observable where you can listen for changes in the form's value in the template using `AsyncPipe` or in the component class using the `subscribe()` method.
* With the `value` property. which gives you a snapshot of the current value. * With the `value` property, which gives you a snapshot of the current value.
The following example shows you how to display the current value using interpolation in the template. The following example shows you how to display the current value using interpolation in the template.