From 3556bc898f54945b24760f34b019ec59caf7ee72 Mon Sep 17 00:00:00 2001 From: MM20 <15646950+MM2-0@users.noreply.github.com> Date: Sun, 15 Feb 2026 15:45:11 +0100 Subject: [PATCH] typo --- docs/docs/developer-guide/plugins/plugin-types/calendar.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/developer-guide/plugins/plugin-types/calendar.md b/docs/docs/developer-guide/plugins/plugin-types/calendar.md index 191d2aed4..057c98779 100644 --- a/docs/docs/developer-guide/plugins/plugin-types/calendar.md +++ b/docs/docs/developer-guide/plugins/plugin-types/calendar.md @@ -76,12 +76,12 @@ A `CalendarEvent` has the following properties: - `calendarName`: The name of the calendar the event belongs to. - `description` (optional): A description of the event. - `location` (optional): The location of the event. +- `attendees`: A list of human-readable names, representing the attendees. - `color` (optional): The color of the event, in `0xAARRGGBB` format. - `startTime`: Start time of the event in milliseconds since epoch. For tasks, this can be null. - `endTime`: End time of the event in milliseconds since epoch. For tasks, this is the due date. - `includeTime`: If false, only the date will be shown for the event. -- `attendees`: A list of human-readable names, representing the attendees. -- `uri`: A URI that opens the event. Can be a URI that your app can handle, or a https link. +- `uri`: A URI that opens the event. Can be a URI that your app can handle, or a weblink. - `isCompleted` (optional): If this is not null, the event is treated as a task, indicated by a checkmark in the UI.