From 5bd5bef8d3ecd5067d1a093a49665aef598bf61c Mon Sep 17 00:00:00 2001 From: todayama_r <13657682+Corvus400@users.noreply.github.com> Date: Mon, 12 Aug 2024 05:10:48 +0900 Subject: [PATCH] :wrench: Corrected the comment to reflect that the first day of DroidKaigi 2024 is Workshop Day. --- .../confsched/data/sessions/DefaultSessionsApiClient.kt | 2 +- .../io/github/droidkaigi/confsched/model/TimetableRoom.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/data/src/commonMain/kotlin/io/github/droidkaigi/confsched/data/sessions/DefaultSessionsApiClient.kt b/core/data/src/commonMain/kotlin/io/github/droidkaigi/confsched/data/sessions/DefaultSessionsApiClient.kt index 9829e7d3f..313c3d199 100644 --- a/core/data/src/commonMain/kotlin/io/github/droidkaigi/confsched/data/sessions/DefaultSessionsApiClient.kt +++ b/core/data/src/commonMain/kotlin/io/github/droidkaigi/confsched/data/sessions/DefaultSessionsApiClient.kt @@ -179,7 +179,7 @@ private fun LocaledResponse.toRoomType() = when (en?.lowercase()) { "hedgehog" -> RoomH "iguana" -> RoomI "jellyfish" -> RoomJ - // Assume the room on the third day. + // Assume the room on the first day. else -> RoomIJ } diff --git a/core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/TimetableRoom.kt b/core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/TimetableRoom.kt index 0f0c5f40b..23c2948d7 100644 --- a/core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/TimetableRoom.kt +++ b/core/model/src/commonMain/kotlin/io/github/droidkaigi/confsched/model/TimetableRoom.kt @@ -59,7 +59,7 @@ val TimetableRoom.nameAndFloor: String RoomType.RoomH -> basementFloorString.currentLangTitle RoomType.RoomI -> "1F" RoomType.RoomJ -> "1F" - // Assume the room on the third day. + // Assume the room on the first day. RoomType.RoomIJ -> "1F" } return "${name.currentLangTitle} ($floor)"