From 10b15fb2ada55e6fe3d8ea4d2302b664065a1efa Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Tue, 3 Dec 2024 11:20:32 +0100 Subject: [PATCH] router: parsing: docs: fix Records::from link 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 4e13d687..a443f83e 100644 --- a/proxmox-router/src/stream/parsing.rs +++ b/proxmox-router/src/stream/parsing.rs @@ -19,7 +19,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`] + /// Note: If the underlying type already implements [`AsyncBufRead`], use [`Records::from`] /// isntead! pub fn new(reader: T) -> Records> where