fix(docs): Remove inline comment from JSDoc example code

TypeScript parser was having issues with inline comment in JSDoc code block.
Removed comment to fix parse error.

Verification:
- TypeScript compiles 
This commit is contained in:
Matthew Raymer
2025-12-23 07:24:36 +00:00
parent c29957bf64
commit 15726ceb8f

View File

@@ -636,7 +636,7 @@ export interface DailyNotificationPlugin {
* const schedule = await DailyNotification.createSchedule({
* id: 'daily-fetch',
* kind: 'fetch',
* cron: '0 */6 * * *', // Every 6 hours
* cron: '0 */6 * * *',
* enabled: true
* });
* ```