From bcd1639d968d3d5d10e24c23f7f52064570a23c4 Mon Sep 17 00:00:00 2001 From: Aleksey Loginov Date: Tue, 1 Aug 2023 23:35:14 +0300 Subject: [PATCH] minor docs fix --- src/rpp/rpp/schedulers/current_thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpp/rpp/schedulers/current_thread.hpp b/src/rpp/rpp/schedulers/current_thread.hpp index 0e3e45378..e57ddb21f 100644 --- a/src/rpp/rpp/schedulers/current_thread.hpp +++ b/src/rpp/rpp/schedulers/current_thread.hpp @@ -64,7 +64,7 @@ namespace rpp::schedulers * - "Task 4" * * @par How to use it properly? - * To have any visible impact you need to use it at least **twice** during same observable. For example, `rpp::source::just` source uses it as default scheduler as well as `rpp::operators::subscribe_on` operator. + * To have any visible impact you need to use it at least **twice** during same observable. For example, `rpp::source::just` source uses it as default scheduler as well as `rpp::operators::merge` operator (which just "owns" it during subscription). * * For example, this one * ```cpp