Fix typo in error string

This commit is contained in:
Dan Callahan
2017-05-24 21:52:49 -05:00
parent 843f6b9a39
commit 6757fadee3

View File

@@ -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")),
}
}