From c6ebcd1eb920ee3466622093b12dbaaf065cc26b Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Mon, 11 Nov 2019 08:39:24 -0800 Subject: [PATCH] docs: fix numbering (#33736) PR Close #33736 --- aio/content/start/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/start/index.md b/aio/content/start/index.md index 2b7b773594..07eaab3fc7 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 `