summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/udp
diff options
context:
space:
mode:
authorxliiv <tymoteusz.jankowski@gmail.com>2020-05-31 18:49:04 +0200
committerGitHub <noreply@github.com>2020-05-31 18:49:04 +0200
commite70a1b6d64ac2b3943d674d8f3b0b362fdc668b9 (patch)
treea3627e14fe849e03522815ecb6f8b8960b1b1ed2 /tokio/src/net/udp
parent9264b837d897dcdf974703a6739132b995e669bc (diff)
docs: use intra-links in the docs (#2575)
Diffstat (limited to 'tokio/src/net/udp')
-rw-r--r--tokio/src/net/udp/split.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/net/udp/split.rs b/tokio/src/net/udp/split.rs
index 6a38c539..e8d434aa 100644
--- a/tokio/src/net/udp/split.rs
+++ b/tokio/src/net/udp/split.rs
@@ -1,6 +1,6 @@
-//! [`UdpSocket`](../struct.UdpSocket.html) split support.
+//! [`UdpSocket`](crate::net::UdpSocket) split support.
//!
-//! The [`split`](../struct.UdpSocket.html#method.split) method splits a
+//! The [`split`](method@crate::net::UdpSocket::split) method splits a
//! `UdpSocket` into a receive half and a send half, which can be used to
//! receive and send datagrams concurrently, even from two different tasks.
//!