3
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-04-03 21:40:04 +08:00

Missing single quotation mark ()

Missing single quotation mark on doc.
This commit is contained in:
Matheus Valiente Souza 2017-12-08 17:57:02 -02:00 committed by Ibby Hadeed
parent bf41506324
commit acd1a80e4d

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