From 55d43e1cf4115f60093e8cf990de819f004fe4fb Mon Sep 17 00:00:00 2001 From: naskya Date: Fri, 21 Jun 2024 05:57:52 +0900 Subject: [PATCH] update message --- src/command/config/validate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/config/validate.rs b/src/command/config/validate.rs index 4b74972..d561c34 100644 --- a/src/command/config/validate.rs +++ b/src/command/config/validate.rs @@ -74,7 +74,7 @@ pub(super) fn run() -> Result<(), ValidationError> { SERVER_CONFIG_PATH, CLIENT_CONFIG_PATH ); - cprintln!("Note: This is only a formal validation, so this does not guarantee that the settings are appropriate."); + cprintln!("Note: This command only checks the format of the config files, so its result does not guarantee the correctness of the value."); } server_validation_result.and(client_validation_result)