Merge pull request #368 from gralpli/issue-363

docs(transport-smtp): fix docs for `domain` field
This commit is contained in:
Alexis Mousset
2019-11-30 09:53:31 +00:00
committed by GitHub

View File

@@ -12,7 +12,7 @@ use std::time::Duration;
pub struct ClientTlsParameters {
/// A connector from `native-tls`
pub connector: TlsConnector,
/// The domain to send during the TLS handshake
/// The domain name which is expected in the TLS certificate from the server
pub domain: String,
}