From df97fbc077faceca58ffabda6c1e3284d4942379 Mon Sep 17 00:00:00 2001 From: christos-P Date: Thu, 26 Nov 2020 19:55:21 +0200 Subject: [PATCH] docs: added a missing ` in inputs-outputs.md (#39856) PR Close #39856 --- aio/content/guide/inputs-outputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/inputs-outputs.md b/aio/content/guide/inputs-outputs.md index 90dc71cb37..a9962fc143 100644 --- a/aio/content/guide/inputs-outputs.md +++ b/aio/content/guide/inputs-outputs.md @@ -22,7 +22,7 @@ The `` serves as the context for the ``. `@Input()` and `@Output()` give a child component a way to communicate with its parent component. `@Input()` allows a parent component to update data in the child component. -Conversely, `@Output() allows the child to send data to a parent component. +Conversely, `@Output()` allows the child to send data to a parent component. {@a input}