From ede686d129226bddf75be2d04f5367aafd5f3423 Mon Sep 17 00:00:00 2001 From: Ali MJ Al-Nasrawy Date: Sat, 4 Dec 2021 00:12:02 +0300 Subject: [PATCH] docs --- actix-server/src/server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-server/src/server.rs b/actix-server/src/server.rs index af1be4ce..62151b15 100644 --- a/actix-server/src/server.rs +++ b/actix-server/src/server.rs @@ -57,8 +57,8 @@ pub(crate) enum ServerCommand { /// Creates a worker per CPU core (or the number specified in [`ServerBuilder::workers`]) and /// distributes connections with a round-robin strategy. /// -/// The [Server] must be awaited to process stop commands and listen for OS signals. It will resolve -/// when the server has fully shut down. +/// The [Server] must be awaited in order to run. +/// It will resolve when the server has fully shut down. /// /// # Shutdown Signals /// On UNIX systems, `SIGQUIT` will start a graceful shutdown and `SIGTERM` or `SIGINT` will start a