diff --git a/aio/content/start/index.md b/aio/content/start/index.md index 2b7b773594dce..07eaab3fc7f2b 100644 --- a/aio/content/start/index.md +++ b/aio/content/start/index.md @@ -125,7 +125,7 @@ To help you get going, the following steps use predefined product data and metho -1. Add the product descriptions. On the `

` element, use an `*ngIf` directive so that Angular only creates the `

` element if the current product has a description. +4. Add the product descriptions. On the `

` element, use an `*ngIf` directive so that Angular only creates the `

` element if the current product has a description. @@ -138,7 +138,7 @@ To help you get going, the following steps use predefined product data and metho -1. Add a button so users can share a product with friends. Bind the button's `click` event to the `share()` method (in `product-list.component.ts`). Event binding uses a set of parentheses, `( )`, around the event, as in the following `