From 1d338f74de68bbf22a8ae036298783acd699904e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 30 Jul 2022 18:12:15 +0100 Subject: [PATCH] Fix outdated info in Server->Multi-Threading section of docs taken from ##276 --- docs/server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/server.md b/docs/server.md index 0ef5820..b464d51 100644 --- a/docs/server.md +++ b/docs/server.md @@ -20,7 +20,7 @@ After the `bind` is successful, use [`HttpServer::run()`][httpserver_run] to ret ## Multi-Threading -`HttpServer` automatically starts a number of HTTP _workers_, by default this number is equal to the number of logical CPUs in the system. This number can be overridden with the [`HttpServer::workers()`][workers] method. +`HttpServer` automatically starts a number of HTTP _workers_, by default this number is equal to the number of physical CPUs in the system. This number can be overridden with the [`HttpServer::workers()`][workers] method.