docs(): Missing Comma / Syntax Error (#381)

A comma was missing :)
This commit is contained in:
Saurabh Vyas 2016-08-03 04:00:56 +05:30 committed by Ibrahim Hadeed
parent 990c9c2a49
commit 899c695414

View File

@ -15,7 +15,7 @@ import { Cordova, Plugin } from './plugin';
* LocalNotifications.schedule({
* id: 1,
* text: 'Single Notification',
* sound: isAndroid? 'file://sound.mp3': 'file://beep.caf'
* sound: isAndroid? 'file://sound.mp3': 'file://beep.caf',
* data: { secret: key }
* });
*