From 7edc8472ca45b9349be3e97923853a2b41570d23 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Mon, 12 Sep 2022 15:17:29 -0700 Subject: [PATCH] Reference concat_map not flat_map --- Rx/v2/src/rxcpp/operators/rx-flat_map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rx/v2/src/rxcpp/operators/rx-flat_map.hpp b/Rx/v2/src/rxcpp/operators/rx-flat_map.hpp index 9a15824a5..98f5b2bcc 100644 --- a/Rx/v2/src/rxcpp/operators/rx-flat_map.hpp +++ b/Rx/v2/src/rxcpp/operators/rx-flat_map.hpp @@ -17,7 +17,7 @@ \return Observable that emits the results of applying a function to a pair of values emitted by the source observable and the collection observable. - Observables, produced by the CollectionSelector, are merged. There is another operator rxcpp::observable::flat_map that works similar but concatenates the observables. + Observables, produced by the CollectionSelector, are merged. There is another operator rxcpp::observable::concat_map that works similar but concatenates the observables. \sample \snippet flat_map.cpp flat_map sample