From 6757fadee319cf2b9e7fdbd0d73b7be725990eb1 Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Wed, 24 May 2017 21:52:49 -0500 Subject: [PATCH] Fix typo in error string --- lettre/src/smtp/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lettre/src/smtp/mod.rs b/lettre/src/smtp/mod.rs index 953ab13..565141f 100644 --- a/lettre/src/smtp/mod.rs +++ b/lettre/src/smtp/mod.rs @@ -112,7 +112,7 @@ impl SmtpTransportBuilder { timeout: Some(Duration::new(60, 0)), }) } - None => Err(From::from("Could nor resolve hostname")), + None => Err(From::from("Could not resolve hostname")), } }