diff --git a/modules/angular2/docs/core/01_templates.md b/modules/angular2/docs/core/01_templates.md
index eb9c752256..56f322d8bd 100644
--- a/modules/angular2/docs/core/01_templates.md
+++ b/modules/angular2/docs/core/01_templates.md
@@ -378,7 +378,7 @@ of the templates occurs. One such example is foreach.
- - {{i}}. {{item}}
-
+
- {{i}}. {{person}}
-
```
@@ -394,7 +394,7 @@ syntax is preferable.
```
- - {{i}}. {{item}}
-
+
- {{i}}. {{person}}
-
```
@@ -404,7 +404,7 @@ which allows us to further shorten the text.
```
- - {{i}}. {{item}}
-
+
- {{i}}. {{person}}
-
```
@@ -413,7 +413,7 @@ microsyntax for `foreach`.
```
- - {{i}}. {{item}}
-
+
- {{i}}. {{person}}
-
```