docs: fix typo in getting started guide (#33185)

Fixes #33181

PR Close #33185
This commit is contained in:
Mayur Barge 2019-10-15 12:10:54 -07:00 committed by Matias Niemelä
parent d3f3d9b4cb
commit 51b9ce44ea
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ To make the "Notify Me" button work, you need to configure two things:
<code-example header="src/app/product-alerts/product-alerts.component.html" path="getting-started/src/app/product-alerts/product-alerts.component.html"></code-example>
1. Next, define the behavior that should happen when the user clicks the button. Recall that it's the parent, product list component&mdash;not the product alerts component&mdash;that's acts when the child raises the event. In `product-list.component.ts`, define an `onNotify()` method, similar to the `share()` method:
1. Next, define the behavior that should happen when the user clicks the button. Recall that it's the parent, product list component&mdash;not the product alerts component&mdash;that acts when the child raises the event. In `product-list.component.ts`, define an `onNotify()` method, similar to the `share()` method:
<code-example header="src/app/product-list/product-list.component.ts" path="getting-started/src/app/product-list/product-list.component.ts" region="on-notify"></code-example>