From 87cf59d399cfc4089bb4de5efb827f6c599f2a8b Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Mon, 20 Dec 2021 10:18:56 +0100 Subject: [PATCH] Doc fix --- src/agent.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent.rs b/src/agent.rs index bd7c271..94c4140 100644 --- a/src/agent.rs +++ b/src/agent.rs @@ -536,8 +536,8 @@ impl AgentBuilder { } /// Configure TLS options for a backend other than rustls. The parameter can be a - /// any type which implements the [HttpsConnector] trait. If you enable the native-tls - /// feature, we provide `impl HttpsConnector for native_tls::TlsConnector` so you can pass + /// any type which implements the [`TlsConnector`] trait. If you enable the native-tls + /// feature, we provide `impl TlsConnector for native_tls::TlsConnector` so you can pass /// [`Arc`](https://docs.rs/native-tls/0.2.7/native_tls/struct.TlsConnector.html). /// /// This overrides any previous call to tls_config or tls_connector.