From 3ac6f2d9c0b3e1aa6f980a389f4e4e68f53a2524 Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 21 Sep 2023 13:19:26 +0200 Subject: [PATCH] http: rate limited stream: fix typo in rustdoc comment Signed-off-by: Lukas Wagner --- proxmox-http/src/rate_limited_stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-http/src/rate_limited_stream.rs b/proxmox-http/src/rate_limited_stream.rs index 78b435ba..d43c09c1 100644 --- a/proxmox-http/src/rate_limited_stream.rs +++ b/proxmox-http/src/rate_limited_stream.rs @@ -59,7 +59,7 @@ impl RateLimitedStream { /// Creates a new instance with limiter update callback. /// - /// The fuction is called every minute to update/change the used limiters. + /// The function is called every minute to update/change the used limiters. /// /// Note: This function is called within an async context, so it /// should be fast and must not block.