From 8118f8f117a5b544f3bc6b3ce4e639a2a605afcb Mon Sep 17 00:00:00 2001 From: Nikita Baksalyar Date: Sun, 12 Apr 2020 14:59:37 +0100 Subject: docs: fix incorrect documentation links & formatting (#2332) The streams documentation referred to module-level 'split' doc which is no longer there --- tokio/src/net/udp/socket.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'tokio/src/net/udp/socket.rs') diff --git a/tokio/src/net/udp/socket.rs b/tokio/src/net/udp/socket.rs index 604da98b..faf1dca6 100644 --- a/tokio/src/net/udp/socket.rs +++ b/tokio/src/net/udp/socket.rs @@ -74,9 +74,6 @@ impl UdpSocket { /// Splits the `UdpSocket` into a receive half and a send half. The two parts /// can be used to receive and send datagrams concurrently, even from two /// different tasks. - /// - /// See the module level documenation of [`split`](super::split) for more - /// details. pub fn split(self) -> (RecvHalf, SendHalf) { split(self) } -- cgit v1.2.3