From 3df8219d100d314c77e6f0f8c80fcc5b4096096e Mon Sep 17 00:00:00 2001 From: jevonearth Date: Sat, 4 Jun 2016 13:09:43 -0700 Subject: [PATCH] Fix typo in 'Add/Delete in the HeroesComponent' section. --- public/docs/ts/latest/tutorial/toh-pt6.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt6.jade b/public/docs/ts/latest/tutorial/toh-pt6.jade index 47f8ab7415..eca8467201 100644 --- a/public/docs/ts/latest/tutorial/toh-pt6.jade +++ b/public/docs/ts/latest/tutorial/toh-pt6.jade @@ -289,7 +289,7 @@ figure.image-display +makeExample('toh-6/ts/app/heroes.component.ts', 'add', 'app/heroes.component.ts (add)')(format=".") :marked The `HeroDetailComponent` does most of the work. All we do is toggle an `*ngIf` flag that - swaps it into the DOM when were add a hero and remove it from the DOM when the user is done. + swaps it into the DOM when we add a hero and remove it from the DOM when the user is done. The *delete* logic is a bit trickier. +makeExample('toh-6/ts/app/heroes.component.ts', 'delete', 'app/heroes.component.ts (delete)')(format=".")