docs(nav): fix typos in comments for NavControllerBase and ViewController (#9953)

* docs(nav): fix typo

* docs(view): fix typo
This commit is contained in:
Josep Sayol
2017-01-11 22:23:18 +01:00
committed by Brandy Carney
parent dbfc79b63a
commit d46b3e8e9f
2 changed files with 2 additions and 2 deletions

View File

@ -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);
});