docs: fix numbering (#33736)

PR Close #33736
This commit is contained in:
Judy Bogart 2019-11-11 08:39:24 -08:00 committed by Kara Erickson
parent eece138fa7
commit c6ebcd1eb9
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ To help you get going, the following steps use predefined product data and metho
</figure>
1. Add the product descriptions. On the `<p>` element, use an `*ngIf` directive so that Angular only creates the `<p>` element if the current product has a description.
4. Add the product descriptions. On the `<p>` element, use an `*ngIf` directive so that Angular only creates the `<p>` element if the current product has a description.
<code-example path="getting-started/src/app/product-list/product-list.component.3.html" header="src/app/product-list/product-list.component.html">
</code-example>
@ -138,7 +138,7 @@ To help you get going, the following steps use predefined product data and metho
</div>
</figure>
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 `<button>` element:
5. 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 `<button>` element:
<code-example path="getting-started/src/app/product-list/product-list.component.4.html" header="src/app/product-list/product-list.component.html">
</code-example>