Skip to content

Commit

Permalink
Fix typo in shareIn documentation (#2726)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominaezzz authored May 22, 2021
1 parent 00e6cbf commit c2d218a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlinx-coroutines-core/common/src/flow/operators/Share.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import kotlin.jvm.*
* ### Upstream completion and error handling
*
* **Normal completion of the upstream flow has no effect on subscribers**, and the sharing coroutine continues to run. If a
* a strategy like [SharingStarted.WhileSubscribed] is used, then the upstream can get restarted again. If a special
* strategy like [SharingStarted.WhileSubscribed] is used, then the upstream can get restarted again. If a special
* action on upstream completion is needed, then an [onCompletion] operator can be used before the
* `shareIn` operator to emit a special value in this case, like this:
*
Expand Down

0 comments on commit c2d218a

Please sign in to comment.