Missing single quotation mark (#2175)

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

View File

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