From 4cb3579786533b60468f8ab5ea5e1afe610d8c9a Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Tue, 3 Dec 2024 11:20:33 +0100 Subject: [PATCH] router: parsing: docs: fix 'instead' typo Signed-off-by: Maximiliano Sandoval --- proxmox-router/src/stream/parsing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-router/src/stream/parsing.rs b/proxmox-router/src/stream/parsing.rs index a443f83e..69ae1994 100644 --- a/proxmox-router/src/stream/parsing.rs +++ b/proxmox-router/src/stream/parsing.rs @@ -20,7 +20,7 @@ where impl Records { /// Create a *new buffered reader* for to cerate a record stream from an [`AsyncRead`]. /// Note: If the underlying type already implements [`AsyncBufRead`], use [`Records::from`] - /// isntead! + /// instead! pub fn new(reader: T) -> Records> where T: AsyncRead + Send + Sync + Unpin + 'static,