From 2991221551fc84a091475601ba77257eb6c18d69 Mon Sep 17 00:00:00 2001 From: swseverance Date: Mon, 24 Apr 2017 12:51:38 -0400 Subject: [PATCH] docs(aio): remove duplicate `as` (#16265) the word `as` incorrectly appears consecutively --- aio/content/tutorial/toh-pt4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt4.md b/aio/content/tutorial/toh-pt4.md index 059e4365c8..53c994f360 100644 --- a/aio/content/tutorial/toh-pt4.md +++ b/aio/content/tutorial/toh-pt4.md @@ -341,7 +341,7 @@ You don't really need a dedicated method to wrap one line. Write it anyway: You might be tempted to call the `getHeroes()` method in a constructor, but a constructor should not contain complex logic, -especially a constructor that calls a server, such as as a data access method. +especially a constructor that calls a server, such as a data access method. The constructor is for simple initializations, like wiring constructor parameters to properties. To have Angular call `getHeroes()`, you can implement the Angular *ngOnInit lifecycle hook*.