From 3add45dfdf420431916d684a5a2f640b1ec306b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20K=C3=BChl?= Date: Mon, 30 Jun 2025 16:00:56 +0200 Subject: [PATCH] fixed typos --- include/matador/utils/leader_follower_thread_pool.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/matador/utils/leader_follower_thread_pool.hpp b/include/matador/utils/leader_follower_thread_pool.hpp index 3569ec6..ac2f386 100644 --- a/include/matador/utils/leader_follower_thread_pool.hpp +++ b/include/matador/utils/leader_follower_thread_pool.hpp @@ -30,7 +30,7 @@ public: * * @tparam F Type of join function * @param size Number of threads - * @param join_func Join function. + * @param join_func Join-function. */ template leader_follower_thread_pool(const std::size_t size, F join_func) @@ -55,7 +55,7 @@ public: void promote_new_leader(); /** - * Returns number of threads. + * Returns the number of threads. * * @return Number of threads. */ @@ -85,7 +85,7 @@ public: /** * Returns true if the thread pool is running. * - * @return True if thread pool is running. + * @return True if the thread pool is running. */ [[nodiscard]] bool is_running() const;