From 242a6ab216d40a82523d541bf587d4e6fa0c75cd Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 17 May 2021 11:39:11 +0200 Subject: [PATCH] doc fixups Signed-off-by: Wolfgang Bumiller --- proxmox-http/src/proxy_config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox-http/src/proxy_config.rs b/proxmox-http/src/proxy_config.rs index dea6b9c1..8a61a397 100644 --- a/proxmox-http/src/proxy_config.rs +++ b/proxmox-http/src/proxy_config.rs @@ -1,6 +1,6 @@ //! HTTP proxy configuration. //! -//! This can be used with the [`SimpleClient`](crate::client::SimpleClient). +//! This can be used with the [`SimpleHttp`](crate::client::SimpleHttp). use anyhow::{bail, format_err, Error}; @@ -38,7 +38,7 @@ impl ProxyConfig { } } - /// Parse proxy configuration string [http://][:port] + /// Parse proxy configuration string `[http://][:port]` /// /// Default port is 1080 (like curl) pub fn parse_proxy_url(http_proxy: &str) -> Result {