diff --git a/aio/content/examples/toh-pt2/src/app/heroes/heroes.component.1.html b/aio/content/examples/toh-pt2/src/app/heroes/heroes.component.1.html
index 230702bc239..208c920f97f 100644
--- a/aio/content/examples/toh-pt2/src/app/heroes/heroes.component.1.html
+++ b/aio/content/examples/toh-pt2/src/app/heroes/heroes.component.1.html
@@ -2,7 +2,10 @@
My Heroes
- {{hero.id}} {{hero.name}}
+
+ {{hero.id}}
+ {{hero.name}}
+
diff --git a/aio/content/tutorial/toh-pt2.md b/aio/content/tutorial/toh-pt2.md
index ecb688930d0..909cfda1119 100644
--- a/aio/content/tutorial/toh-pt2.md
+++ b/aio/content/tutorial/toh-pt2.md
@@ -37,7 +37,8 @@ Open the `HeroesComponent` template file and make the following changes:
1. Add an `` at the top.
1. Below it add an HTML unordered list \(``\) element.
-1. Insert an `` within the `` that displays properties of a `hero`.
+1. Insert an `` within the ``.
+1. Place a `` inside the `` that displays properties of a `hero` inside `` elements.
1. Sprinkle some CSS classes for styling \(you'll add the CSS styles shortly\).
Make it look like this:
@@ -69,6 +70,17 @@ It's a critical part of the syntax.
After the browser refreshes, the list of heroes appears.
+
+
+
+
+**NOTE**:
+Inside the `
` element, we've wrapped the hero's details in a `` element. Later on we make the hero clickable, and it is better for accessibility purposes to use natively interactive HTML elements (e.g. ``) instead of adding event listeners to non-interactive ones (e.g. ``).
+
+For more details on accessibility, see [Accessibility in Angular](guide/accessibility).
+
+
+
### Style the heroes
@@ -109,7 +121,7 @@ In this section, you'll listen for the hero item click event and update the hero
### Add a click event binding
-Start creating a `` with a click event binding in the `` like this:
+Add a click event binding to the `` in the `` like this:
@@ -118,18 +130,6 @@ This is an example of Angular's [event binding](guide/event-binding) syntax.
The parentheses around `click` tell Angular to listen for the `` element's `click` event.
When the user clicks in the ``, Angular executes the `onSelect(hero)` expression.
-
-
-
-
-**NOTE**:
-We added the click event binding on a new `` element.
-While we could have added the event binding on the `` element directly, it is better for accessibility purposes to use the native `` element to handle clicks.
-
-For more details on accessibility, see [Accessibility in Angular](guide/accessibility).
-
-
-
In the next section, define an `onSelect()` method in `HeroesComponent` to display the hero that was defined in the `*ngFor` expression.
### Add the click event handler