Add missing periods.

This commit is contained in:
Benoit Marty 2024-03-27 08:08:58 +01:00
parent fda38e90e5
commit f559dcdd85
3 changed files with 6 additions and 6 deletions

View File

@ -49,14 +49,14 @@ data class Error(
*/ */
val isFederated: Boolean? = null, val isFederated: Boolean? = null,
/** /**
* true if the current user is using matrix.org * true if the current user is using matrix.org.
*/ */
val isMatrixDotOrg: Boolean? = null, val isMatrixDotOrg: Boolean? = null,
val name: Name, val name: Name,
/** /**
* UTDs can be permanent or temporary. If temporary, this field will * UTDs can be permanent or temporary. If temporary, this field will
* contain the time it took to decrypt the message in milliseconds. If * contain the time it took to decrypt the message in milliseconds. If
* permanent should be -1 * permanent should be -1.
*/ */
val timeToDecryptMillis: Int? = null, val timeToDecryptMillis: Int? = null,
/** /**
@ -65,7 +65,7 @@ data class Error(
*/ */
val userTrustsOwnIdentity: Boolean? = null, val userTrustsOwnIdentity: Boolean? = null,
/** /**
* true if that unable to decrypt error was visible to the user * true if that unable to decrypt error was visible to the user.
*/ */
val wasVisibleToUser: Boolean? = null, val wasVisibleToUser: Boolean? = null,
) : VectorAnalyticsEvent { ) : VectorAnalyticsEvent {

View File

@ -41,12 +41,12 @@ data class PollCreation(
enum class Action { enum class Action {
/** /**
* Newly created poll * Newly created poll.
*/ */
Create, Create,
/** /**
* Edit of an existing poll * Edit of an existing poll.
*/ */
Edit, Edit,
} }

View File

@ -26,7 +26,7 @@ package im.vector.app.features.analytics.plan
*/ */
data class SuperProperties( data class SuperProperties(
/** /**
* Used by web to identify the platform (Web Platform/Electron Platform) * Used by web to identify the platform (Web Platform/Electron Platform).
*/ */
val appPlatform: String? = null, val appPlatform: String? = null,
/** /**