diff --git a/public/docs/ts/latest/tutorial/toh-pt1.jade b/public/docs/ts/latest/tutorial/toh-pt1.jade index b0f918ed86..570f8f0e0a 100644 --- a/public/docs/ts/latest/tutorial/toh-pt1.jade +++ b/public/docs/ts/latest/tutorial/toh-pt1.jade @@ -67,7 +67,7 @@ code-example(format="" language="bash"). Let's convert the `hero` from a literal string to an interface. Create a `Hero` interface with `id` and `name` properties. - Keep this near the top of the `app.component.ts` file for now. + For now put this near the top of the `app.component.ts` file, just below the import statement. +makeExample('toh-1/ts/app/app.component.ts', 'hero-interface-1', 'app.component.ts (Hero interface)')(format=".")