Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 58c566ac authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #8552 from cketti/fix_BaseViewModel_kdoc

Fix `BaseViewModel` KDoc
parents a226a3b1 89b79058
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ import kotlinx.coroutines.launch
 * @param EFFECT The type that represents side-effects that can occur in response to the state changes. For example,
 * a navigation event can be represented as an effect.
 *
 * @property initialState The initial [STATE] of the ViewModel.
 * @param initialState The initial [STATE] of the ViewModel.
 */
abstract class BaseViewModel<STATE, EVENT, EFFECT>(
    initialState: STATE,