From d9252b744b18d21255dc43389c9ff60e609efbe5 Mon Sep 17 00:00:00 2001 From: Nikita Migunov Date: Mon, 17 Aug 2020 21:54:47 +0300 Subject: [PATCH] Fix typo in the ThreadPool's docs --- Foundation/include/Poco/ThreadPool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/ThreadPool.h b/Foundation/include/Poco/ThreadPool.h index fa8bc6cf5..e7bb7d6a2 100644 --- a/Foundation/include/Poco/ThreadPool.h +++ b/Foundation/include/Poco/ThreadPool.h @@ -41,7 +41,7 @@ class Foundation_API ThreadPool /// Threads in a thread pool are re-used once they become /// available again. /// The thread pool always keeps a minimum number of threads - /// running. If the demans for threads increases, additional + /// running. If the demand for threads increases, additional /// threads are created. Once the demand for threads sinks /// again, no-longer used threads are stopped and removed /// from the pool.