From 081166f204d5fe9cc5288bb9a7f0b97380c7ae39 Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Fri, 27 Dec 2019 03:06:41 +0100 Subject: [PATCH] Fixing inaccurate function description in udp::recv --- src/net/udp/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/udp/mod.rs b/src/net/udp/mod.rs index 418b4b6..1b6d0d7 100644 --- a/src/net/udp/mod.rs +++ b/src/net/udp/mod.rs @@ -288,7 +288,7 @@ impl UdpSocket { /// Receives data from the socket. /// - /// On success, returns the number of bytes read and the origin. + /// On success, returns the number of bytes read. /// /// # Examples ///