Fix comment form in enum

This commit is contained in:
Maxime Naturel 2022-03-03 15:07:09 +01:00
parent f4b5353424
commit 442d722980
1 changed files with 14 additions and 3 deletions

View File

@ -17,7 +17,18 @@
package im.vector.app.features.location.option
enum class LocationSharingOption {
USER_CURRENT, // current user's location
USER_LIVE, // user's location during a certain amount of time
PINNED // static location pinned by the user
/**
* Current user's location.
*/
USER_CURRENT,
/**
* User's location during a certain amount of time.
*/
USER_LIVE,
/**
* Static location pinned by the user.
*/
PINNED
}