Skip to content

Commit 58c566a

Browse files
authored
Merge pull request #8552 from cketti/fix_BaseViewModel_kdoc
Fix `BaseViewModel` KDoc
2 parents a226a3b + 89b7905 commit 58c566a

File tree

1 file changed

+2
-2
lines changed
  • core/ui/compose/common/src/main/kotlin/app/k9mail/core/ui/compose/common/mvi

1 file changed

+2
-2
lines changed

core/ui/compose/common/src/main/kotlin/app/k9mail/core/ui/compose/common/mvi/BaseViewModel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import kotlinx.coroutines.launch
1919
* represented as a state.
2020
* @param EVENT The type that represents user actions that can occur and should be handled by the ViewModel. For
2121
* example, a button click can be represented as an event.
22-
* @param EFFECT The type that represents side-effects that can occur in response to the state changes. For example,
22+
* @param EFFECT The type that represents side-effects that can occur in response to the state changes. For example,
2323
* a navigation event can be represented as an effect.
2424
*
25-
* @property initialState The initial [STATE] of the ViewModel.
25+
* @param initialState The initial [STATE] of the ViewModel.
2626
*/
2727
abstract class BaseViewModel<STATE, EVENT, EFFECT>(
2828
initialState: STATE,

0 commit comments

Comments
 (0)