From 8e7c55245270f22cc9db3c4538dc95c5bb35c585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Jim=C3=A9nez=20L=C3=B3pez?= Date: Mon, 11 Apr 2016 17:37:11 -0600 Subject: [PATCH] docs: Remove double 'the' & missing dashes in several files closes #1073 --- public/docs/dart/latest/guide/architecture.jade | 2 +- public/docs/dart/latest/tutorial/toh-pt3.jade | 2 +- public/docs/js/latest/guide/forms.jade | 2 +- public/docs/ts/latest/guide/dependency-injection.jade | 2 +- public/docs/ts/latest/guide/forms.jade | 2 +- public/docs/ts/latest/guide/upgrade.jade | 2 +- public/docs/ts/latest/tutorial/toh-pt3.jade | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) 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.