From 899c695414fece6f7d93a7e322651f5fc249132f Mon Sep 17 00:00:00 2001 From: Saurabh Vyas Date: Wed, 3 Aug 2016 04:00:56 +0530 Subject: [PATCH] docs(): Missing Comma / Syntax Error (#381) A comma was missing :) --- src/plugins/localnotifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/localnotifications.ts b/src/plugins/localnotifications.ts index 9d56d59ec..8c763dfe1 100644 --- a/src/plugins/localnotifications.ts +++ b/src/plugins/localnotifications.ts @@ -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 } * }); *