docs: added a missing ` in inputs-outputs.md (#39856)

PR Close #39856
This commit is contained in:
christos-P 2020-11-26 19:55:21 +02:00 committed by Jessica Janiuk
parent 9a2f83b826
commit df97fbc077
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ The `<parent-component>` serves as the context for the `<child-component>`.
`@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}