diff --git a/docs/angular/lifecycle.md b/docs/angular/lifecycle.md index 5bf7d113370..ddb7b902fbb 100644 --- a/docs/angular/lifecycle.md +++ b/docs/angular/lifecycle.md @@ -37,9 +37,9 @@ In addition to the Angular life cycle events, Ionic Angular provides a few addit | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render. diff --git a/docs/react/lifecycle.md b/docs/react/lifecycle.md index f43992d2163..9d348b95013 100644 --- a/docs/react/lifecycle.md +++ b/docs/react/lifecycle.md @@ -20,9 +20,9 @@ Ionic provides a few lifecycle methods that you can use in your apps: | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render. diff --git a/docs/vue/lifecycle.md b/docs/vue/lifecycle.md index a36def3597a..b9f16fc9cad 100644 --- a/docs/vue/lifecycle.md +++ b/docs/vue/lifecycle.md @@ -9,13 +9,12 @@ This guide discusses how to use the Ionic Framework Lifecycle events in an Ionic ## Ionic Framework Lifecycle Methods Ionic Framework provides a few lifecycle methods that you can use in your apps: - | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render.