From 44759178227455036357b4c05c61e1a067319f9b Mon Sep 17 00:00:00 2001 From: Karcsesz Date: Wed, 14 Feb 2024 21:11:36 +0100 Subject: [PATCH] Minor typo in `ServerReloadOptions` --- src/args_parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args_parser.rs b/src/args_parser.rs index be9de82..1e89e04 100644 --- a/src/args_parser.rs +++ b/src/args_parser.rs @@ -126,7 +126,7 @@ pub enum CollisionHandling { #[derive(Args, Debug)] pub struct ServerReloadOptions { - /// Set this flag for the application to attempt to reload the running server process automaticallys + /// Set this flag for the application to attempt to reload the running server process automatically #[arg(long, short = 'r')] pub reload_server: bool, }