From 110002fd89949c01a723dfb9a8ed5447363810c7 Mon Sep 17 00:00:00 2001 From: Kevin <7457579+khufdev@users.noreply.github.com> Date: Tue, 26 Aug 2025 08:46:22 -0400 Subject: [PATCH] Update comments in MyTimelineComplicationDataSourceService.kt --- .../complication/MyTimelineComplicationDataSourceService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wear/src/main/java/com/example/wear/snippets/complication/MyTimelineComplicationDataSourceService.kt b/wear/src/main/java/com/example/wear/snippets/complication/MyTimelineComplicationDataSourceService.kt index 00b6daea3..eb7503052 100644 --- a/wear/src/main/java/com/example/wear/snippets/complication/MyTimelineComplicationDataSourceService.kt +++ b/wear/src/main/java/com/example/wear/snippets/complication/MyTimelineComplicationDataSourceService.kt @@ -44,7 +44,7 @@ class MyTimelineComplicationDataSourceService : SuspendingTimelineComplicationDa timelineEntries = emptyList() ) } - // Retrieve list of events from your own datasource / database. + // Retrieve the list of events from your own data source or database. val events = getCalendarEvents() return ComplicationDataTimeline( defaultComplicationData = shortTextComplicationData("No event"), @@ -66,7 +66,7 @@ class MyTimelineComplicationDataSourceService : SuspendingTimelineComplicationDa text = PlainComplicationText.Builder(text).build(), contentDescription = PlainComplicationText.Builder(text).build() ) - // Add further optional details here such as icon, tap action, title etc + // Add further optional details here such as icon, tap action, and title. .build() // [START_EXCLUDE]