Skip to content

Commit aaac93b

Browse files
0xbayorecheej
authored andcommitted
Fix word omission (Kotlin#2071)
1 parent 5713feb commit aaac93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/flow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ Now if we have a flow of three integers and call `requestFlow` for each of them
11121112

11131113
Then we end up with a flow of flows (`Flow<Flow<String>>`) that needs to be _flattened_ into a single flow for
11141114
further processing. Collections and sequences have [flatten][Sequence.flatten] and [flatMap][Sequence.flatMap]
1115-
operators for this. However, due the asynchronous nature of flows they call for different _modes_ of flattening,
1115+
operators for this. However, due to the asynchronous nature of flows they call for different _modes_ of flattening,
11161116
as such, there is a family of flattening operators on flows.
11171117

11181118
#### flatMapConcat

0 commit comments

Comments
 (0)