diff options
author | hozan23 <hozan23@proton.me> | 2023-11-23 00:08:16 +0300 |
---|---|---|
committer | hozan23 <hozan23@proton.me> | 2023-11-23 00:08:16 +0300 |
commit | f1b78d53d7d0009fdef8f0e220bc0c421288c514 (patch) | |
tree | 4e00a6ef8228a25debcaadf8b1e3b5ca4517eeae /net/src/transports/udp.rs | |
parent | 52616ee63d77e1847f502c0ac92bead6eaa12ab3 (diff) |
general clean ups for the docs
Diffstat (limited to 'net/src/transports/udp.rs')
-rw-r--r-- | net/src/transports/udp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/src/transports/udp.rs b/net/src/transports/udp.rs index 2050226..ca5b94d 100644 --- a/net/src/transports/udp.rs +++ b/net/src/transports/udp.rs @@ -9,7 +9,7 @@ use crate::{ Error, Result, }; -/// UDP network connection implementations of the `Connection` trait. +/// UDP network connection implementations of the [`Connection`] trait. pub struct UdpConn { inner: UdpSocket, } |