File tree 1 file changed +1
-1
lines changed
kotlinx-coroutines-core/common/src/flow
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import kotlinx.coroutines.*
27
27
*
28
28
* Flow does not carry information whether it is a cold stream (that can be collected multiple times and
29
29
* triggers its evaluation every time collection is executed) or hot one, but conventionally flow represents a cold stream.
30
- * Transitions between hot and cold streams are support via channels and corresponding API: [flowViaChannel], [broadcastIn], [produceIn].
30
+ * Transitions between hot and cold streams are supported via channels and corresponding API: [flowViaChannel], [broadcastIn], [produceIn].
31
31
*
32
32
* Flow is a **pure** concept: it encapsulates its own execution context and never propagates it to the downstream, thus making
33
33
* reasoning about execution context of particular transformations or terminal operations trivial.
You can’t perform that action at this time.
0 commit comments