fixed typos

This commit is contained in:
Sascha Kühl 2025-06-30 16:00:56 +02:00
parent e46de87355
commit 3add45dfdf
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ public:
* *
* @tparam F Type of join function * @tparam F Type of join function
* @param size Number of threads * @param size Number of threads
* @param join_func Join function. * @param join_func Join-function.
*/ */
template<typename F> template<typename F>
leader_follower_thread_pool(const std::size_t size, F join_func) leader_follower_thread_pool(const std::size_t size, F join_func)
@ -55,7 +55,7 @@ public:
void promote_new_leader(); void promote_new_leader();
/** /**
* Returns number of threads. * Returns the number of threads.
* *
* @return Number of threads. * @return Number of threads.
*/ */
@ -85,7 +85,7 @@ public:
/** /**
* Returns true if the thread pool is running. * 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; [[nodiscard]] bool is_running() const;