From acd1a80e4d805c1345422c869276c9ecd0850c1e Mon Sep 17 00:00:00 2001 From: Matheus Valiente Souza Date: Fri, 8 Dec 2017 17:57:02 -0200 Subject: [PATCH] Missing single quotation mark (#2175) Missing single quotation mark on doc. --- src/@ionic-native/plugins/push/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/push/index.ts b/src/@ionic-native/plugins/push/index.ts index d184b14bb..6d09720b8 100644 --- a/src/@ionic-native/plugins/push/index.ts +++ b/src/@ionic-native/plugins/push/index.ts @@ -257,7 +257,7 @@ export type PushEvent = string; * }).then(() => console.log('Channel created')); * * // Delete a channel (Android O and above) - * this.push.deleteChannel('testchannel1').then(() => console.log('Channel deleted)); + * this.push.deleteChannel('testchannel1').then(() => console.log('Channel deleted')); * * // Return a list of currently configured channels * this.push.listChannels().then((channels) => console.log('List of channels', channels))