summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/udp/socket.rs
diff options
context:
space:
mode:
authorNikita Baksalyar <nikita.baksalyar@gmail.com>2020-04-12 14:59:37 +0100
committerGitHub <noreply@github.com>2020-04-12 15:59:37 +0200
commit8118f8f117a5b544f3bc6b3ce4e639a2a605afcb (patch)
treec6002b471079d5f867b5b8916b77ffbf26790b76 /tokio/src/net/udp/socket.rs
parent1e679748ecedfb0e894c5028eb8c67f44e47507a (diff)
docs: fix incorrect documentation links & formatting (#2332)
The streams documentation referred to module-level 'split' doc which is no longer there
Diffstat (limited to 'tokio/src/net/udp/socket.rs')
-rw-r--r--tokio/src/net/udp/socket.rs3
1 files changed, 0 insertions, 3 deletions
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)
}