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:
Mez Pahlan 2020-02-27 02:00:08 +00:00 committed by GitHub
parent 3c93b2465e
commit 2a1c4b291a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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