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}