From 42f2d9dbaa72f6c5542af6a62493b5008c5d1b99 Mon Sep 17 00:00:00 2001 From: Valere Date: Tue, 28 May 2024 14:25:19 +0200 Subject: [PATCH] fix doc --- .../app/features/analytics/plan/SuperProperties.kt | 14 +++++++------- types/swift/SuperProperties.swift | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/SuperProperties.kt b/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/SuperProperties.kt index c43ba4a..941db5e 100644 --- a/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/SuperProperties.kt +++ b/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/SuperProperties.kt @@ -54,37 +54,37 @@ data class SuperProperties( enum class AppPlatform(val rawValue: String) { /** - * Element Android platform + * Element Android platform. */ EA("EA"), /** - * Element iOS platform + * Element iOS platform. */ EI("EI"), /** - * Element-X Android platform + * Element-X Android platform. */ EXA("EXA"), /** - * Element-X iOS platform + * Element-X iOS platform. */ EXI("EXI"), /** - * Element Desktop platform code. + * Element Desktop platform. */ Electron_Platform("Electron Platform"), /** - * Other Platform + * Other Platform. */ Other("Other"), /** - * Element Deb platform code. + * Element Deb platform. */ Web_Platform("Web Platform"), } diff --git a/types/swift/SuperProperties.swift b/types/swift/SuperProperties.swift index 9259340..8d33291 100644 --- a/types/swift/SuperProperties.swift +++ b/types/swift/SuperProperties.swift @@ -44,19 +44,19 @@ extension AnalyticsEvent { } public enum AppPlatform: String { - /// Element Android platform + /// Element Android platform. case EA = "EA" - /// Element iOS platform + /// Element iOS platform. case EI = "EI" - /// Element-X Android platform + /// Element-X Android platform. case EXA = "EXA" - /// Element-X iOS platform + /// Element-X iOS platform. case EXI = "EXI" - /// Element Desktop platform code. + /// Element Desktop platform. case Electron_Platform = "Electron Platform" - /// Other Platform + /// Other Platform. case Other = "Other" - /// Element Deb platform code. + /// Element Deb platform. case Web_Platform = "Web Platform" }