From 55fd725e74cc5bbc678c9c0348693dccf48aca69 Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Wed, 19 Aug 2020 10:48:52 +0300 Subject: [PATCH] docs: Fix typo in the inputs and outputs guide (#38524) PR Close #38524 --- aio/content/guide/inputs-outputs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/inputs-outputs.md b/aio/content/guide/inputs-outputs.md index 6841f7b714..c1442c5c57 100644 --- a/aio/content/guide/inputs-outputs.md +++ b/aio/content/guide/inputs-outputs.md @@ -208,7 +208,7 @@ about the event and gives that data to the parent. The child's template has two controls. The first is an HTML `` with a [template reference variable](guide/template-reference-variables) , `#newItem`, where the user types in an item name. Whatever the user types -into the `` gets stored in the `#newItem` variable. +into the `` gets stored in the `value` property of the `#newItem` variable. @@ -218,7 +218,7 @@ an event binding because the part to the left of the equal sign is in parentheses, `(click)`. The `(click)` event is bound to the `addNewItem()` method in the child component class which -takes as its argument whatever the value of `#newItem` is. +takes as its argument whatever the value of `#newItem.value` property is. Now the child component has an `@Output()` for sending data to the parent and a method for raising an event.