From 35b2dbd867e832db1c3af6015a3b953eef7537d2 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 6 Aug 2016 07:58:28 +0100 Subject: [PATCH] docs(tutorial): text following a node requires a dot --- public/docs/dart/latest/tutorial/toh-pt3.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/dart/latest/tutorial/toh-pt3.jade b/public/docs/dart/latest/tutorial/toh-pt3.jade index 87c061630d..7e7bd9911a 100644 --- a/public/docs/dart/latest/tutorial/toh-pt3.jade +++ b/public/docs/dart/latest/tutorial/toh-pt3.jade @@ -62,7 +62,7 @@ code-example(language="bash"). All of our component names end in "Component". All of our component file names end in "_component". - We spell our filenames in lower **underscore case** + We spell our filenames in lower **underscore case** (AKA **[snake_case](../guide/glossary.html#!#snake_case)**) so we don't worry about case sensitivity on the server or in source control. @@ -164,7 +164,7 @@ code-example(format="."). :marked The two components won't coordinate until we bind the `selectedHero` property of the `AppComponent` to the `HeroDetailComponent` element's `hero` property like this: -code-example(format=".") +code-example(format="."). <my-hero-detail [hero]="selectedHero"></my-hero-detail> :marked The `AppComponent`’s template should now look like this