From a6b4e66763dad198d526e475110ac77a4b982cf4 Mon Sep 17 00:00:00 2001 From: frankamp Date: Thu, 15 Oct 2015 11:21:53 -0700 Subject: [PATCH] Fix the final markup to represent the tutorial Also fixes the link to the next tutorial --- public/docs/ts/latest/tutorial/toh-pt1.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt1.jade b/public/docs/ts/latest/tutorial/toh-pt1.jade index 64fe85949b..9b8134b543 100644 --- a/public/docs/ts/latest/tutorial/toh-pt1.jade +++ b/public/docs/ts/latest/tutorial/toh-pt1.jade @@ -290,7 +290,7 @@ include ../../../../_includes/_util-fns <div><label>id: </label>{{hero.id}}</div> <div> <label>name: </label> - <div><input value="{{hero.name}}" placeholder="name"></input></div> + <div><input [(ng-model)]="hero.name" placeholder="name"></input></div> </div> `, directives: [FORM_DIRECTIVES] @@ -311,4 +311,4 @@ include ../../../../_includes/_util-fns We also want to allow the user to select a hero and display their details. We’ll learn more about how to retrieve lists, bind them to the template, and allow a user to select it in the - [next tutorial chapter](./toh-pt2). + [next tutorial chapter](./toh-pt2.html).