From ac4b680f1fb79fe4b26cb536fc819704ec2a5707 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 21 Feb 2016 22:33:59 -0800 Subject: [PATCH] docs(architecture): "clicks" typo in the component section closes #869 Change 'click' to 3rd person present, clicks. --- public/docs/ts/latest/guide/architecture.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/architecture.jade b/public/docs/ts/latest/guide/architecture.jade index 357542804b..796df45813 100644 --- a/public/docs/ts/latest/guide/architecture.jade +++ b/public/docs/ts/latest/guide/architecture.jade @@ -146,7 +146,7 @@ figure 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')