From 9da4d3d31a1803915aee99746ec05c5274f3401f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?a=C2=B3?= <17271075+0xbayo@users.noreply.github.com> Date: Sat, 30 May 2020 19:36:46 +0400 Subject: [PATCH] Fix word omission --- docs/flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/flow.md b/docs/flow.md index 3f14b10417..bb35b2ecec 100644 --- a/docs/flow.md +++ b/docs/flow.md @@ -1110,7 +1110,7 @@ Now if we have a flow of three integers and call `requestFlow` for each of them Then we end up with a flow of flows (`Flow>`) that needs to be _flattened_ into a single flow for further processing. Collections and sequences have [flatten][Sequence.flatten] and [flatMap][Sequence.flatMap] -operators for this. However, due the asynchronous nature of flows they call for different _modes_ of flattening, +operators for this. However, due to the asynchronous nature of flows they call for different _modes_ of flattening, as such, there is a family of flattening operators on flows. #### flatMapConcat