Fix typo in RxStore (#119)
* Update KDoc for Store::observe Refer to RxJava Flowable instead of Coroutine Flow. * Update KDoc for StoreBuilder::withSinglePersister The function `persister` is in a different class so we need to refer to it by its FQN otherwise the IDE whinges at us.
This commit is contained in:
parent
3c93b2465e
commit
2a1c4b291a
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ import kotlinx.coroutines.rx2.await
|
|||
import kotlinx.coroutines.rx2.rxCompletable
|
||||
|
||||
/**
|
||||
* Return a flow for the given key
|
||||
* Return a [Flowable] for the given key
|
||||
* @param request - see [StoreRequest] for configurations
|
||||
*/
|
||||
@ExperimentalCoroutinesApi
|
||||
|
@ -91,7 +91,7 @@ fun <Key : Any, Output : Any> StoreBuilder<Key, Output>.withScheduler(
|
|||
* Connects a (Non Flow) [Single] source of truth that is accessible via [reader], [writer],
|
||||
* [delete], and [deleteAll].
|
||||
*
|
||||
* @see persister
|
||||
* @see com.dropbox.android.external.store4.StoreBuilder.persister
|
||||
*/
|
||||
@FlowPreview
|
||||
@ExperimentalCoroutinesApi
|
||||
|
|
Loading…
Reference in a new issue