From 7863eff2a5bb5dc478bcf5e0534a2eaabaa21e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Thu, 4 Aug 2022 10:14:38 +0200 Subject: [PATCH] http: fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- proxmox-http/src/client/simple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-http/src/client/simple.rs b/proxmox-http/src/client/simple.rs index bfb1ee7a..cbeac14f 100644 --- a/proxmox-http/src/client/simple.rs +++ b/proxmox-http/src/client/simple.rs @@ -16,7 +16,7 @@ use openssl::ssl::{SslConnector, SslMethod}; use crate::client::HttpsConnector; use crate::HttpOptions; -/// Asyncrounous HTTP client implementation +/// Asynchronous HTTP client implementation pub struct Client { client: HyperClient, options: HttpOptions,