diff --git a/public/docs/dart/latest/guide/architecture.jade b/public/docs/dart/latest/guide/architecture.jade index 732bbc6c08..2c6f1b04bc 100644 --- a/public/docs/dart/latest/guide/architecture.jade +++ b/public/docs/dart/latest/guide/architecture.jade @@ -94,7 +94,7 @@ figure The `HeroDetailComponent` is a *different* component than the `HeroListComponent` we've seen. The `HeroDetailComponent` (code not shown) presents facts about a particular hero, the - hero that the user selects from the list presented by the the `HeroListComponent`. + hero that the user selects from the list presented by the `HeroListComponent`. The `HeroDetailComponent` is a **child** of the `HeroListComponent`. figure diff --git a/public/docs/dart/latest/tutorial/toh-pt3.jade b/public/docs/dart/latest/tutorial/toh-pt3.jade index 172c1c814b..63a3a12b2d 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(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 (AKA "kebab-case") so we don't worry about case sensitivity on the server or in source control.