From 7165886a873bdbb331fcd99b5ba8b3baa9e17df0 Mon Sep 17 00:00:00 2001 From: Scott Hatcher Date: Mon, 19 Oct 2015 13:51:41 -0700 Subject: [PATCH] Remove unnecessary closing anchor tag. --- public/docs/ts/latest/tutorial/toh-pt2.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt2.jade b/public/docs/ts/latest/tutorial/toh-pt2.jade index 9a9a88aaa9..05210f7840 100644 --- a/public/docs/ts/latest/tutorial/toh-pt2.jade +++ b/public/docs/ts/latest/tutorial/toh-pt2.jade @@ -131,7 +131,7 @@ include ../../../../_includes/_util-fns code-example(format="linenums" language="html"). <li *ng-for="#hero of heroes"> - <span class="badge">{{hero.id}}</span> {{hero.name}}</a> + <span class="badge">{{hero.id}}</span> {{hero.name}} </li> :markdown @@ -222,7 +222,7 @@ include ../../../../_includes/_util-fns code-example(format="linenums"). <li *ng-for="#hero of heroes" (click)="onSelect(hero)"> - <span class="badge">{{hero.id}}</span> {{hero.name}}</a> + <span class="badge">{{hero.id}}</span> {{hero.name}} </li> :markdown Focus on the event binding @@ -368,7 +368,7 @@ include ../../../../_includes/_util-fns <li *ng-for="#hero of heroes" [ng-class]="getSelectedClass(hero)" (click)="onSelect(hero)"> - <span class="badge">{{hero.id}}</span> {{hero.name}}</a> + <span class="badge">{{hero.id}}</span> {{hero.name}} </li> :markdown