diff --git a/public/docs/ts/latest/tutorial/toh-pt3.jade b/public/docs/ts/latest/tutorial/toh-pt3.jade index e5cb933aa6..2b08697697 100644 --- a/public/docs/ts/latest/tutorial/toh-pt3.jade +++ b/public/docs/ts/latest/tutorial/toh-pt3.jade @@ -30,7 +30,7 @@ p Run the #[+liveExampleLink2('', 'toh-3')] for this part. ### Keep the app transpiling and running We want to start the TypeScript compiler, have it watch for changes, and start our server. We'll do this by typing -code-example(format="." language="bash"). +code-example(language="bash"). npm start :marked @@ -54,7 +54,7 @@ code-example(format="." language="bash"). ### Separating the Hero Detail Component Add a new file named `hero-detail.component.ts` to the `app` folder and create `HeroDetailComponent` as follows. -+makeExample('toh-3/ts/app/hero-detail.component.ts', 'v1', 'hero-detail.component.ts (initial version)')(format=".") ++makeExample('toh-3/ts/app/hero-detail.component.ts', 'v1', 'app/hero-detail.component.ts (initial version)')(format=".") .l-sub-section :marked ### Naming conventions @@ -65,7 +65,8 @@ code-example(format="." language="bash"). All of our component names end in "Component". All of our component file names end in ".component". - We spell our file names in lower dash case (AKA "kebab-case") so we don't worry about + We spell our file names in lower **[dash case](../guide/glossary.html#!#dash-case)** + (AKA **[kebab-case](../guide/glossary.html#!#kebab-case)**) so we don't worry about case sensitivity on the server or in source control.