From fea061215d989e31e1dd53ef23553f8bd45b2f30 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 10 Sep 2019 16:59:29 -0400 Subject: [PATCH] docs(modal): fix typo in usage closes ionic-team/ionic-docs#806 --- core/src/components/modal/readme.md | 2 +- core/src/components/modal/usage/angular.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/modal/readme.md b/core/src/components/modal/readme.md index ae31618783..1f586ad7d9 100644 --- a/core/src/components/modal/readme.md +++ b/core/src/components/modal/readme.md @@ -90,7 +90,7 @@ export class ModalPage { constructor(navParams: NavParams) { // componentProps can also be accessed at construction time using NavParams - console.log(navParams.get('firstName'); + console.log(navParams.get('firstName')); } } diff --git a/core/src/components/modal/usage/angular.md b/core/src/components/modal/usage/angular.md index 8fbec8a0d5..aa8e255e54 100644 --- a/core/src/components/modal/usage/angular.md +++ b/core/src/components/modal/usage/angular.md @@ -68,7 +68,7 @@ export class ModalPage { constructor(navParams: NavParams) { // componentProps can also be accessed at construction time using NavParams - console.log(navParams.get('firstName'); + console.log(navParams.get('firstName')); } }