Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 35b2dbd

Browse files
docs(tutorial): text following a node requires a dot
1 parent 9f03fca commit 35b2dbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/docs/dart/latest/tutorial/toh-pt3.jade

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ code-example(language="bash").
6262

6363
All of our component names end in "Component". All of our component file names end in "_component".
6464

65-
We spell our filenames in lower **underscore case**
65+
We spell our filenames in lower **underscore case**
6666
(AKA **[snake_case](../guide/glossary.html#!#snake_case)**) so we don't worry about
6767
case sensitivity on the server or in source control.
6868

@@ -164,7 +164,7 @@ code-example(format=".").
164164
:marked
165165
The two components won't coordinate until we bind the `selectedHero` property of the `AppComponent`
166166
to the `HeroDetailComponent` element's `hero` property like this:
167-
code-example(format=".")
167+
code-example(format=".").
168168
<my-hero-detail [hero]="selectedHero"></my-hero-detail>
169169
:marked
170170
The `AppComponent`’s template should now look like this

0 commit comments

Comments
 (0)