From 2e730287fb6d547f931aeece0d125eda8b7d7d2a Mon Sep 17 00:00:00 2001 From: Jordan Amman Date: Wed, 25 Sep 2019 16:29:42 -0500 Subject: [PATCH] docs: clarify sentence in lifecycle hooks doc (#32860) PR Close #32860 --- aio/content/guide/lifecycle-hooks.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aio/content/guide/lifecycle-hooks.md b/aio/content/guide/lifecycle-hooks.md index 2836ec0d95..463f77e59c 100644 --- a/aio/content/guide/lifecycle-hooks.md +++ b/aio/content/guide/lifecycle-hooks.md @@ -2,8 +2,7 @@ A component has a lifecycle managed by Angular. -Angular creates it, renders it, creates and renders its children, -checks it when its data-bound properties change, and destroys it before removing it from the DOM. +Angular creates and renders components along with their children, checks when their data-bound properties change, and destroys them before removing them from the DOM. Angular offers **lifecycle hooks** that provide visibility into these key life moments and the ability to act when they occur.