File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
kotlinx-coroutines-core/common/src/flow Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ fun main() = runBlocking<Unit> {
222
222
223
223
> You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-select-02.kt ) .
224
224
225
- The result of this code is quite interesting, so we'll analyze it in mode detail:
225
+ The result of this code is quite interesting, so we'll analyze it in more detail:
226
226
227
227
``` text
228
228
a -> 'Hello 0'
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public enum class SharingCommand {
58
58
* [`command`][command] flow implementation function. Back-to-back emissions of the same command have no effect.
59
59
* Only emission of a different command has effect:
60
60
*
61
- * * [START][SharingCommand.START] — the upstream flow is stared .
61
+ * * [START][SharingCommand.START] — the upstream flow is started .
62
62
* * [STOP][SharingCommand.STOP] — the upstream flow is stopped.
63
63
* * [STOP_AND_RESET_REPLAY_CACHE][SharingCommand.STOP_AND_RESET_REPLAY_CACHE] —
64
64
* the upstream flow is stopped and the [SharedFlow.replayCache] is reset to its initial state.
You can’t perform that action at this time.
0 commit comments