From 2ab59084205a4c77a0371fbbe98885f489eee9f6 Mon Sep 17 00:00:00 2001 From: Adrian DC Date: Sat, 20 Jul 2019 19:01:00 +0200 Subject: [PATCH] served: minor documentation fix about non-blocking run conditions --- src/served/net/server.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/served/net/server.hpp b/src/served/net/server.hpp index 9110fff..c83d04b 100644 --- a/src/served/net/server.hpp +++ b/src/served/net/server.hpp @@ -77,7 +77,7 @@ class server * and another param which defines the blocking nature. * * @param n_threads the number of threads to pool for request handling - * @param block if n_threads > 0, defines whether this operation is blocking or not + * @param block if n_threads > 1, defines whether this operation is blocking or not */ void run(int n_threads = 1, bool block = true);