diff --git a/public/docs/ts/latest/tutorial/toh-pt1.jade b/public/docs/ts/latest/tutorial/toh-pt1.jade index ee5cbcfb59..d7cf496fd1 100644 --- a/public/docs/ts/latest/tutorial/toh-pt1.jade +++ b/public/docs/ts/latest/tutorial/toh-pt1.jade @@ -70,9 +70,11 @@ include ../../../../_includes/_util-fns The browser should refresh and display our title and hero. The double curly braces tell our app to read the `title` and `hero` properties from the component and render them. - This is the "interpolation" form of one-way data binding; - we can learn more about interpolation in the [Displaying Data chapter](displaying-data). - + This is the "interpolation" form of one-way data binding. + .l-sub-section + :marked + Learn more about interpolation in the [Displaying Data chapter](../guide/displaying-data). + :marked ### Hero object At the moment, our hero is just a name. Our hero needs more properties. @@ -178,7 +180,7 @@ include ../../../../_includes/_util-fns .l-sub-section :marked - Learn more about `ng-model` in the [Template Syntax](../guide/template-syntax.html#ng-model) + Learn more about `ng-model` in the [Template Syntax chapter](../guide/template-syntax.html#ng-model) :marked Replace the `` with the following HTML @@ -232,12 +234,10 @@ include ../../../../_includes/_util-fns The `ng-model` directive is one of many Forms directives which happen to be bundled in a convenient array called `FORM_DIRECTIVES`. - + Learn more about Angular Forms in the [Forms chapter](../guide/forms) + :marked Let’s forget about importing `NgModel` and import the `FORM_DIRECTIVES` array instead: ``` import {bootstrap, Component, FORM_DIRECTIVES} from 'angular2/angular2'; diff --git a/public/docs/ts/latest/tutorial/toh-pt2.jade b/public/docs/ts/latest/tutorial/toh-pt2.jade index e106d26e3d..44fc1e909d 100644 --- a/public/docs/ts/latest/tutorial/toh-pt2.jade +++ b/public/docs/ts/latest/tutorial/toh-pt2.jade @@ -123,7 +123,7 @@ include ../../../../_includes/_util-fns We can reference this variable within the template to access a hero’s properties. Learn more about `ng-for` and local template variables in the - [Template Syntax](../guide/template-syntax.html#ng-for) chapter. + [Template Syntax chapter](../guide/template-syntax.html#ng-for). :marked With this background in mind, we now insert some content between the `