From caec707ffa77035d57cf6e15f7f3d672d2d9a090 Mon Sep 17 00:00:00 2001 From: Kevin Drouvin Date: Mon, 5 Dec 2016 20:59:39 +0200 Subject: [PATCH] docs(style-guide): fix typo (#2927) Fix a typo on the T-DRY section. --- public/docs/ts/latest/guide/style-guide.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/style-guide.jade b/public/docs/ts/latest/guide/style-guide.jade index 2ec106e9a0..20910b5554 100644 --- a/public/docs/ts/latest/guide/style-guide.jade +++ b/public/docs/ts/latest/guide/style-guide.jade @@ -1074,7 +1074,7 @@ a(href="#toc") Back to top .s-why.s-why-last :marked **Why?** Being DRY is important, but not crucial if it sacrifices the other elements of LIFT. - That's why its calle _T-DRY_. + That's why it's called _T-DRY_. For example, it's redundant to name a component, `hero-view.component.html` because a component is obviously a view. But if something is not obvious or departs from a convention, then spell it out.