From 52ece7834ace9b41d873243ca9011c62e45f2e13 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Tue, 8 Mar 2016 21:00:09 -0800 Subject: [PATCH] docs(toh-pt1): revision suggested in #412 closes #941 --- public/docs/ts/latest/tutorial/toh-pt1.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=".")