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,