Merge pull request #131 from callahad/error-typo

Fix typo in error string
This commit is contained in:
Alexis Mousset
2017-05-25 09:49:35 +02:00
committed by GitHub

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