diff --git a/aio/content/tutorial/toh-pt2.md b/aio/content/tutorial/toh-pt2.md
index 137ffa96ad..a04627f40a 100644
--- a/aio/content/tutorial/toh-pt2.md
+++ b/aio/content/tutorial/toh-pt2.md
@@ -229,7 +229,7 @@ Angular calls it with the `hero` object displayed in the clicked `
`,
the same `hero` defined previously in the `*ngFor` expression.
`onSelect()` 是 `HeroesComponent` 上的一个方法,你很快就要写它。
-Angular 会把所点击的 `` 上的 `hero` 对象传给它,这个 `hero` 也就是以前在 `*ngFor` 表达式中定义的那个。
+Angular 会把所点击的 `` 上的 `hero` 对象传给它,这个 `hero` 也就是前面在 `*ngFor` 表达式中定义的那个。
### Add the click event handler