From 2f6097d6cf419bb321591dda51251add5dd6a22f Mon Sep 17 00:00:00 2001 From: Andrey Stepachev Date: Sat, 1 Apr 2017 18:48:01 +0100 Subject: [PATCH] fix(toh-pt3.jade): Typo 'ned' => 'need' (#3486) --- public/docs/ts/latest/tutorial/toh-pt3.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt3.jade b/public/docs/ts/latest/tutorial/toh-pt3.jade index 1fbeddcbd1..32ca55869b 100644 --- a/public/docs/ts/latest/tutorial/toh-pt3.jade +++ b/public/docs/ts/latest/tutorial/toh-pt3.jade @@ -7,7 +7,7 @@ include ../_util-fns Soon there will be new requirements and capabilities. You can't keep piling features on top of features in one component; that's not maintainable. - You'll ned to break it up into sub-components, each focused on a specific task or workflow. + You'll need to break it up into sub-components, each focused on a specific task or workflow. Eventually, the `AppComponent` could become a simple shell that hosts those sub-components. In this page, you'll take the first step in that direction by carving out the hero details into a separate, reusable component.