From 6fb69086fbf99063f8ccfce23d38f992605bd764 Mon Sep 17 00:00:00 2001 From: rezabet <99049802+rezabet@users.noreply.github.com> Date: Sun, 21 Apr 2024 18:10:32 +0400 Subject: [PATCH] style: Maintain message consistency (#960) --- examples/autoconfigure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/autoconfigure.rs b/examples/autoconfigure.rs index 93512c6..1aeb8f2 100644 --- a/examples/autoconfigure.rs +++ b/examples/autoconfigure.rs @@ -41,7 +41,7 @@ fn main() { // Plaintext connection which MUST then successfully upgrade to TLS via STARTTLS { - tracing::info!("Trying to establish a plaintext connection to {} and then updating it via the SMTP STARTTLS extension", smtp_host); + tracing::info!("Trying to establish a plaintext connection to {} and then upgrading it via the SMTP STARTTLS extension", smtp_host); let transport = SmtpTransport::starttls_relay(&smtp_host) .expect("build SmtpTransport::starttls_relay")