From 8b35fae3bdfa1ad4647709018f2ed4a3bb558bf9 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 18 Dec 2015 11:04:30 -0600 Subject: [PATCH] fix(typo): change deTEction --- ionic/components/menu/test/basic/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ionic/components/menu/test/basic/index.ts b/ionic/components/menu/test/basic/index.ts index fe9f1043cf..efa57bcee2 100644 --- a/ionic/components/menu/test/basic/index.ts +++ b/ionic/components/menu/test/basic/index.ts @@ -40,7 +40,7 @@ class E2EApp { constructor(app: IonicApp) { this.app = app; this.rootView = Page1; - this.changeDectionCount = 0; + this.changeDetectionCount = 0; this.pages = [ { title: 'Page 1', component: Page1 }, @@ -65,7 +65,7 @@ class E2EApp { } isHidden() { - console.log('Change detection', ++this.changeDectionCount); + console.log('Change detection', ++this.changeDetectionCount); return false; } }