docs(architecture): "clicks" typo in the component section

closes #869
Change 'click' to 3rd person present, clicks.
This commit is contained in:
Chris 2016-02-21 22:33:59 -08:00 committed by Ward Bell
parent 89a9d59ecf
commit ac4b680f1f
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ figure
<a id="component-code"></a>
A `HeroListComponent`, for example, might have a `heroes` property that returns an array of heroes
that it acquired from a service.
It might have a `selectHero()` method that sets a `selectedHero` property when the user click on a hero from that list.
It might have a `selectHero()` method that sets a `selectedHero` property when the user clicks on a hero from that list.
It might be a class like this:
+makeExample('architecture/ts/app/hero-list.component.ts', 'class', 'app/hero-list.component.ts')