diff --git a/src/navigation/nav-controller-base.ts b/src/navigation/nav-controller-base.ts index c89e5daeefc..894394add04 100644 --- a/src/navigation/nav-controller-base.ts +++ b/src/navigation/nav-controller-base.ts @@ -686,7 +686,7 @@ export class NavControllerBase extends Ion implements NavController { _viewsWillLifecycles(enteringView: ViewController, leavingView: ViewController) { if (enteringView || leavingView) { this._zone.run(() => { - // Here, the order is important. WillLeave must called before WillEnter. + // Here, the order is important. WillLeave must be called before WillEnter. leavingView && this._willLeave(leavingView, !enteringView); enteringView && this._willEnter(enteringView); }); diff --git a/src/navigation/view-controller.ts b/src/navigation/view-controller.ts index 4c852033cac..91d39a0d078 100644 --- a/src/navigation/view-controller.ts +++ b/src/navigation/view-controller.ts @@ -463,7 +463,7 @@ export class ViewController { /** * @private - * The view has is about to leave and no longer be the active view. + * The view is about to leave and no longer be the active view. */ _willLeave(willUnload: boolean) { this.willLeave.emit(null);