From f98aeca146af2c090550cba0d57f927b8d128f92 Mon Sep 17 00:00:00 2001 From: Matt Janssen Date: Fri, 6 Dec 2019 16:55:13 +0100 Subject: [PATCH] docs(forms): fix a punctuation error (#34278) PR Close #34278 --- aio/content/guide/reactive-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/reactive-forms.md b/aio/content/guide/reactive-forms.md index 19c4f44536..9d057a7d63 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -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: * 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.