From d1ed57e68e6647a81af7304397d517ffbe6d7c0f Mon Sep 17 00:00:00 2001 From: Chris Griffith Date: Wed, 22 Aug 2018 15:49:30 -0700 Subject: [PATCH] docs(all): cleanups * Changing " to ' The header value was using ". * Update readme.md * Adding Semicolons Console.log were missing semicolons making tslint mad --- core/src/components/alert/usage/angular.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/src/components/alert/usage/angular.md b/core/src/components/alert/usage/angular.md index 83141139c2..7621b2f4f4 100644 --- a/core/src/components/alert/usage/angular.md +++ b/core/src/components/alert/usage/angular.md @@ -48,7 +48,7 @@ export class AlertExample { }, { text: 'Okay', handler: () => { - console.log('Confirm Okay') + console.log('Confirm Okay'); } } ] @@ -109,12 +109,12 @@ export class AlertExample { role: 'cancel', cssClass: 'secondary', handler: () => { - console.log('Confirm Cancel') + console.log('Confirm Cancel'); } }, { text: 'Ok', handler: () => { - console.log('Confirm Ok') + console.log('Confirm Ok'); } } ] @@ -171,12 +171,12 @@ export class AlertExample { role: 'cancel', cssClass: 'secondary', handler: () => { - console.log('Confirm Cancel') + console.log('Confirm Cancel'); } }, { text: 'Ok', handler: () => { - console.log('Confirm Ok') + console.log('Confirm Ok'); } } ] @@ -238,12 +238,12 @@ export class AlertExample { role: 'cancel', cssClass: 'secondary', handler: () => { - console.log('Confirm Cancel') + console.log('Confirm Cancel'); } }, { text: 'Ok', handler: () => { - console.log('Confirm Ok') + console.log('Confirm Ok'); } } ]