actix-server: fix UNIX signal handling documentation

The doc was not matching the actual code.
This commit is contained in:
Guillaume Desmottes 2022-05-03 11:36:49 +02:00
parent 4c1e581a54
commit 6809ab6516
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ pub(crate) enum ServerCommand {
/// server has fully shut down.
///
/// # Shutdown Signals
/// On UNIX systems, `SIGQUIT` will start a graceful shutdown and `SIGTERM` or `SIGINT` will start a
/// On UNIX systems, `SIGTERM` will start a graceful shutdown and `SIGQUIT` or `SIGINT` will start a
/// forced shutdown. On Windows, a Ctrl-C signal will start a forced shutdown.
///
/// A graceful shutdown will wait for all workers to stop first.